diff --git a/backend/inspirehep/pidstore/api/data.py b/backend/inspirehep/pidstore/api/data.py index e51ae7742..9c629db3c 100644 --- a/backend/inspirehep/pidstore/api/data.py +++ b/backend/inspirehep/pidstore/api/data.py @@ -7,7 +7,8 @@ from inspirehep.pidstore.api.base import PidStoreBase from inspirehep.pidstore.minters.control_number import DataMinter +from inspirehep.pidstore.minters.doi import DoiMinter class PidStoreData(PidStoreBase): - minters = [DataMinter] + minters = [DataMinter, DoiMinter] diff --git a/workflows/dags/data/__init__.py b/workflows/dags/data/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/workflows/dags/data/data_harvest.py b/workflows/dags/data/data_harvest.py new file mode 100644 index 000000000..ef445819c --- /dev/null +++ b/workflows/dags/data/data_harvest.py @@ -0,0 +1,227 @@ +import datetime +import logging +from datetime import timedelta + +from airflow.decorators import dag, task, task_group +from airflow.models import Variable +from hooks.generic_http_hook import GenericHttpHook +from hooks.inspirehep.inspire_http_record_management_hook import ( + InspireHTTPRecordManagementHook, +) +from tenacity import RetryError + +logger = logging.getLogger(__name__) + + +@dag( + start_date=datetime.datetime(2024, 11, 28), + schedule="@daily", + catchup=False, + tags=["data"], +) +def data_harvest_dag(): + """ + Initialize a DAG for data harvest workflow. + """ + generic_http_hook = GenericHttpHook(http_conn_id="hepdata_connection") + inspire_http_record_management_hook = InspireHTTPRecordManagementHook() + + data_schema = Variable.get("data_schema") + + @task(task_id="collect_ids") + def collect_ids(): + """Collects the ids of the records that have been updated in the last two days. + + Returns: list of ids + """ + + from_date = (datetime.datetime.now().date() - timedelta(days=1)).strftime( + "%Y-%m-%d" + ) + # http sensor + payload = {"inspire_ids": True, "last_updated": from_date, "sort_by": "latest"} + hepdata_response = generic_http_hook.call_api( + endpoint="/search/ids", method="GET", params=payload + ) + + return hepdata_response.json() + + @task_group + def process_record(record_id): + """ + Process the record by downloading the versions, + building the record and loading it to inspirehep. + """ + + @task(task_concurrency=5) + def download_record_versions(id): + """ + Download the versions of the record. + + Args: id (int): The id of the record. + Returns: dict: The record versions. + """ + + hepdata_response = generic_http_hook.call_api( + endpoint=f"/record/ins{id}?format=json" + ) + hepdata_response.raise_for_status() + payload = hepdata_response.json() + + record = {"base": payload} + for version in range(1, payload["record"]["version"]): + response = generic_http_hook.call_api( + endpoint=f"/record/ins{id}?format=json&version={version}" + ) + record[version] = response.json() + + return record + + @task.virtualenv( + requirements=["inspire-schemas"], + system_site_packages=False, + map_index_template="{{params}}", + ) + def build_record(data_schema, payload, **context): + """Build the record from the payload. + + Args: data_schema (str): The schema of the data. + payload (dict): The payload of the record. + + Returns: dict: The built record. + """ + import datetime + import re + + from inspire_schemas.builders import DataBuilder + + print("wow") + + context["conf"] = {"wow": "wow1"} + context["params"] = {"wow": "wow2"} + print(context["params"]) + + def add_version_specific_dois(record, builder): + """ + Add dois to the record. + """ + for data_table in record["data_tables"]: + builder.add_doi(data_table["doi"], material="part") + for resource_with_doi in record["resources_with_doi"]: + builder.add_doi(resource_with_doi["doi"], material="part") + + builder.add_doi(record["record"]["hepdata_doi"], material="version") + + def add_keywords(record, builder): + """ + Add keywords to the record. + """ + for keyword, item in record.get("data_keywords", {}).items(): + if keyword == "cmenergies": + if len(item) > 1 and "lte" in item[0] and "gte" in item[0]: + builder.add_keyword( + f"{keyword}: {item[0]['lte']}-{item[0]['gte']}" + ) + elif keyword == "observables": + builder.add_keyword(f"{keyword}: {','.join(item)}") + else: + for value in item: + builder.add_keyword(value) + + builder = DataBuilder(source="hepdata") + + builder.add_creation_date(datetime.datetime.now(datetime.UTC).isoformat()) + + base_record = payload["base"] + + for collaboration in base_record["record"]["collaborations"]: + builder.add_collaboration(collaboration) + + builder.add_abstract(base_record["record"]["data_abstract"]) + + add_keywords(base_record["record"], builder) + + doi = base_record["record"].get("doi") + + if doi: + builder.add_literature( + doi={"value": doi}, + record={ + "$ref": f"https://inspirehep.net/api/literature/{base_record['record']['inspire_id']}" + }, + ) + else: + builder.add_literature( + record={ + "$ref": f"https://inspirehep.net/api/literature/{base_record['record']['inspire_id']}" + }, + ) + + for resource in base_record["record"]["resources"]: + if resource["url"].startswith( + "https://www.hepdata.net/record/resource/" + ): + continue + builder.add_url(resource["url"], description=resource["description"]) + + builder.add_title(base_record["record"]["title"]) + + builder.add_acquisition_source( + method="hepcrawl", + submission_number=base_record["record"]["inspire_id"], + datetime=datetime.datetime.now(datetime.UTC).isoformat(), + ) + + mtc = re.match(r"(.*?)\.v\d+", base_record["record"]["hepdata_doi"]) + if mtc: + builder.add_doi(doi=mtc.group(1), material="data") + else: + builder.add_doi( + doi=base_record["record"]["hepdata_doi"], material="data" + ) + + for _, record_version in payload.items(): + add_version_specific_dois(record_version, builder) + + data = builder.record + data["$schema"] = data_schema + return data + + @task + def load_record(new_record): + """ + Load the record to inspirehep. + """ + + try: + response = inspire_http_record_management_hook.get_record( + pid_type="doi", control_number=new_record["dois"][0]["value"] + ) + except RetryError: + logger.info("Creating Record") + post_response = inspire_http_record_management_hook.post_record( + data=new_record, pid_type="data" + ) + post_response.raise_for_status() + return post_response.json() + + old_record = response["metadata"] + revision_id = response.get("revision_id", 0) + old_record.update(new_record) + logger.info(f"Updating Record: {old_record['control_number']}") + response = inspire_http_record_management_hook.update_record( + data=old_record, + pid_type="data", + control_number=old_record["control_number"], + revision_id=revision_id + 1, + ) + return response.json() + + hepdata_record_versions = download_record_versions(record_id) + record = build_record(data_schema=data_schema, payload=hepdata_record_versions) + load_record(record) + + process_record.expand(record_id=collect_ids()) + + +data_harvest_dag() diff --git a/workflows/plugins/hooks/backoffice/base.py b/workflows/plugins/hooks/backoffice/base.py index 7a266e30f..008d73352 100644 --- a/workflows/plugins/hooks/backoffice/base.py +++ b/workflows/plugins/hooks/backoffice/base.py @@ -1,11 +1,8 @@ -import requests from airflow.models import Variable -from airflow.providers.http.hooks.http import HttpHook -from hooks.tenacity_config import tenacity_retry_kwargs -from requests import Response +from hooks.generic_http_hook import GenericHttpHook -class BackofficeHook(HttpHook): +class BackofficeHook(GenericHttpHook): """ A hook to update the status of a workflow in the backoffice system. @@ -28,33 +25,3 @@ def __init__( "Accept": "application/json", "Content-Type": "application/json", } - - @property - def tenacity_retry_kwargs(self) -> dict: - return tenacity_retry_kwargs() - - def run( - self, - endpoint: str, - method: str = None, - data: dict = None, - headers: dict = None, - params: dict = None, - extra_options: dict = None, - ) -> Response: - extra_options = extra_options or {} - headers = headers or self.headers - method = method or self.method - - session = self.get_conn(headers) - - if not self.base_url.endswith("/") and not endpoint.startswith("/"): - url = self.base_url + "/" + endpoint - else: - url = self.base_url + endpoint - - req = requests.Request(method, url, json=data, headers=headers, params=params) - - prepped_request = session.prepare_request(req) - self.log.info("Sending '%s' to url: %s", method, url) - return self.run_and_check(session, prepped_request, extra_options) diff --git a/workflows/plugins/hooks/generic_http_hook.py b/workflows/plugins/hooks/generic_http_hook.py new file mode 100644 index 000000000..c4ba29cc5 --- /dev/null +++ b/workflows/plugins/hooks/generic_http_hook.py @@ -0,0 +1,81 @@ +import logging + +import requests +from airflow.providers.http.hooks.http import HttpHook +from hooks.tenacity_config import tenacity_retry_kwargs +from requests import Response + +logger = logging.getLogger() + + +class GenericHttpHook(HttpHook): + """ + Hook to interact with Inspire API + It overrides the original `run` method in HttpHook so that + we can pass data argument as data, not params + """ + + def __init__(self, http_conn_id, method="GET", headers=None): + self._headers = headers + super().__init__(method=method, http_conn_id=http_conn_id) + + @property + def tenacity_retry_kwargs(self) -> dict: + return tenacity_retry_kwargs() + + @property + def headers(self) -> dict: + return self._headers + + @headers.setter + def headers(self, headers): + self._headers = headers + + def run( + self, + endpoint: str, + method: str = None, + json: dict = None, + data: dict = None, + params: dict = None, + headers: dict = None, + extra_options: dict = None, + ): + extra_options = extra_options or {} + method = method or self.method + headers = headers or self.headers + session = self.get_conn(headers) + + if not self.base_url.endswith("/") and not endpoint.startswith("/"): + url = self.base_url + "/" + endpoint + else: + url = self.base_url + endpoint + + req = requests.Request( + method, url, json=json, data=data, params=params, headers=headers + ) + + prepped_request = session.prepare_request(req) + self.log.info("Sending '%s' to url: %s", method, url) + return self.run_and_check(session, prepped_request, extra_options) + + def call_api( + self, + endpoint: str, + method: str = None, + data: dict = None, + params: dict = None, + headers: dict = None, + ) -> Response: + return self.run_with_advanced_retry( + _retry_args=self.tenacity_retry_kwargs, + endpoint=endpoint, + headers=headers, + json=data, + params=params, + method=method, + ) + + def get_url(self) -> str: + self.get_conn() + return self.base_url diff --git a/workflows/plugins/hooks/inspirehep/inspire_http_hook.py b/workflows/plugins/hooks/inspirehep/inspire_http_hook.py index b5ad6753b..7f085c1fe 100644 --- a/workflows/plugins/hooks/inspirehep/inspire_http_hook.py +++ b/workflows/plugins/hooks/inspirehep/inspire_http_hook.py @@ -1,10 +1,7 @@ import logging -import requests from airflow.models import Variable -from airflow.providers.http.hooks.http import HttpHook -from hooks.tenacity_config import tenacity_retry_kwargs -from requests import Response +from hooks.generic_http_hook import GenericHttpHook logger = logging.getLogger() @@ -14,7 +11,7 @@ AUTHOR_UPDATE_FUNCTIONAL_CATEGORY = "Author updates" -class InspireHttpHook(HttpHook): +class InspireHttpHook(GenericHttpHook): """ Hook to interact with Inspire API It overrides the original `run` method in HttpHook so that @@ -24,10 +21,6 @@ class InspireHttpHook(HttpHook): def __init__(self, method="GET", http_conn_id="inspire_connection"): super().__init__(method=method, http_conn_id=http_conn_id) - @property - def tenacity_retry_kwargs(self) -> dict: - return tenacity_retry_kwargs() - @property def headers(self) -> dict: return { @@ -35,47 +28,10 @@ def headers(self) -> dict: "Accept": "application/vnd+inspire.record.raw+json", } - def run( - self, - endpoint: str, - method: str = None, - json: dict = None, - data: dict = None, - headers: dict = None, - extra_options: dict = None, - ): - extra_options = extra_options or {} - method = method or self.method - session = self.get_conn(headers) - - if not self.base_url.endswith("/") and not endpoint.startswith("/"): - url = self.base_url + "/" + endpoint - else: - url = self.base_url + endpoint - - req = requests.Request(method, url, json=json, data=data, headers=headers) - - prepped_request = session.prepare_request(req) - self.log.info("Sending '%s' to url: %s", method, url) - return self.run_and_check(session, prepped_request, extra_options) - - def call_api(self, method: str, endpoint: str, data: dict) -> Response: - return self.run_with_advanced_retry( - _retry_args=self.tenacity_retry_kwargs, - endpoint=endpoint, - headers=self.headers, - json=data, - method=method, - ) - def get_backoffice_url(self, workflow_id: str) -> str: self.get_conn() return f"{self.base_url}/backoffice/{workflow_id}" - def get_url(self) -> str: - self.get_conn() - return self.base_url - def create_ticket( self, functional_category, template_name, subject, email, template_context ): @@ -120,6 +76,5 @@ def close_ticket(self, ticket_id, template=None, template_context=None): ) logging.info(f"Closing ticket {ticket_id}") - print(request_data) return self.call_api(endpoint=endpoint, data=request_data, method="POST") diff --git a/workflows/scripts/connections/connections.json b/workflows/scripts/connections/connections.json index c50099f54..8c3de7d40 100644 --- a/workflows/scripts/connections/connections.json +++ b/workflows/scripts/connections/connections.json @@ -4,7 +4,17 @@ "description": "", "login": "", "password": null, - "host": "https://inspirebeta.net", + "host": "http://host.docker.internal:8080", + "port": null, + "schema": "", + "extra": "" + }, + "hepdata_connection": { + "conn_type": "http", + "description": "Used for data harvesting", + "login": "", + "password": null, + "host": "https://www.hepdata.net", "port": null, "schema": "", "extra": "" diff --git a/workflows/scripts/variables/variables.json b/workflows/scripts/variables/variables.json index 1e3d9ea5e..330b868bb 100644 --- a/workflows/scripts/variables/variables.json +++ b/workflows/scripts/variables/variables.json @@ -1,5 +1,6 @@ { "backoffice_token": "2e04111a61e8f5ba6ecec52af21bbb9e81732085", "inspire_token": "CHANGE_ME", - "author_schema": "https://inspirehep.net/schemas/records/authors.json" + "author_schema": "https://inspirehep.net/schemas/records/authors.json", + "data_schema": "https://inspirehep.net/schemas/records/data.json" } diff --git a/workflows/tests/cassettes/TestDataHarvest.test_collect_ids.yaml b/workflows/tests/cassettes/TestDataHarvest.test_collect_ids.yaml new file mode 100644 index 000000000..85e2cec96 --- /dev/null +++ b/workflows/tests/cassettes/TestDataHarvest.test_collect_ids.yaml @@ -0,0 +1,61 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: https://www.hepdata.net/search/ids?inspire_ids=True&last_updated=2024-12-03&sort_by=latest + response: + body: + string: '[2851948,2724476,2851464,2829504,2854935] + + ' + headers: + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443";ma=60; + content-length: + - '42' + content-type: + - application/json + date: + - Wed, 04 Dec 2024 14:48:50 GMT + permissions-policy: + - interest-cohort=() + referrer-policy: + - strict-origin-when-cross-origin + retry-after: + - '60' + server: + - gunicorn + set-cookie: + - session=18a822cb24f2d645_67506bd2.kuoc4LMvb3nxwQQWZf17eiuEDAs; Domain=.www.hepdata.net; + Expires=Thu, 05 Dec 2024 02:48:50 GMT; HttpOnly; Path=/; SameSite=Lax + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - sameorigin + x-proxy-backend: + - hepdata-prod_hepdata-web_http + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '59' + x-ratelimit-reset: + - '1733323791' + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/workflows/tests/cassettes/TestDataHarvest.test_download_record.yaml b/workflows/tests/cassettes/TestDataHarvest.test_download_record.yaml new file mode 100644 index 000000000..eb5a3beab --- /dev/null +++ b/workflows/tests/cassettes/TestDataHarvest.test_download_record.yaml @@ -0,0 +1,224 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: https://www.hepdata.net/record/ins2851948?format=json + response: + body: + string: '{"access_count":{"sum":164},"additional_resources":true,"breadcrumb_text":"Aad, + Georges et al.","coordinator":1265,"data_tables":[{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Angularity + distribution/csv","json":"https://www.hepdata.net/download/table/ins2851948/Angularity + distribution/json","root":"https://www.hepdata.net/download/table/ins2851948/Angularity + distribution/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Angularity + distribution/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Angularity + distribution/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Angularity + distribution/yoda1"},"description":"The angularity, for data, background (pre- + and post-reweighting) and three $H\\rightarrow Za$ signal hypotheses (for + $a\\rightarrow q\\bar{q}/gg$ inclusively). Events are...","doi":"10.17182/hepdata.153859.v1/t1","id":1718733,"location":"Data + from Figure 1a","messages":false,"name":"Angularity distribution","processed_name":"Angularitydistribution","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760905?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760906?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Modified + energy correlation function/csv","json":"https://www.hepdata.net/download/table/ins2851948/Modified + energy correlation function/json","root":"https://www.hepdata.net/download/table/ins2851948/Modified + energy correlation function/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Modified + energy correlation function/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Modified + energy correlation function/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Modified + energy correlation function/yoda1"},"description":"The modified energy correlation + function, for data, background (pre- and post-reweighting) and three $H\\rightarrow + Za$ signal hypotheses (for $a\\rightarrow q\\bar{q}/gg$...","doi":"10.17182/hepdata.153859.v1/t2","id":1718734,"location":"Data + from Figure 1b","messages":false,"name":"Modified energy correlation function","processed_name":"Modifiedenergycorrelationfunction","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760908?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760909?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Z + boson transverse momentum/csv","json":"https://www.hepdata.net/download/table/ins2851948/Z + boson transverse momentum/json","root":"https://www.hepdata.net/download/table/ins2851948/Z + boson transverse momentum/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Z + boson transverse momentum/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Z + boson transverse momentum/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Z + boson transverse momentum/yoda1"},"description":"$Z$ boson transverse momentum, + for data, background (pre- and post-reweighting) and three $H\\rightarrow + Za$ signal hypotheses (for $a\\rightarrow q\\bar{q}/gg$ inclusively)....","doi":"10.17182/hepdata.153859.v1/t3","id":1718735,"location":"Data + from Figure 1c","messages":false,"name":"Z boson transverse momentum","processed_name":"Zbosontransversemomentum","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760911?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760912?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Invariant + mass of the dilepton+jet system/csv","json":"https://www.hepdata.net/download/table/ins2851948/Invariant + mass of the dilepton+jet system/json","root":"https://www.hepdata.net/download/table/ins2851948/Invariant + mass of the dilepton+jet system/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Invariant + mass of the dilepton+jet system/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Invariant + mass of the dilepton+jet system/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Invariant + mass of the dilepton+jet system/yoda1"},"description":"Invariant mass of the + lepton pair plus jet system, for data, background (pre- and post-reweighting) + and three $H\\rightarrow Za$ signal...","doi":"10.17182/hepdata.153859.v1/t4","id":1718736,"location":"Data + from Figure 1d","messages":false,"name":"Invariant mass of the dilepton+jet + system","processed_name":"Invariantmassofthedilepton+jetsystem","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760914?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760915?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Predicted + mass/csv","json":"https://www.hepdata.net/download/table/ins2851948/Predicted + mass/json","root":"https://www.hepdata.net/download/table/ins2851948/Predicted + mass/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Predicted + mass/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Predicted + mass/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Predicted + mass/yoda1"},"description":"Regression NN output variable, for data, reweighted + background, and three $H\\rightarrow Za$ signal hypotheses ($a\\rightarrow + q\\bar{q}/gg$ inclusively). Events are required...","doi":"10.17182/hepdata.153859.v1/t5","id":1718737,"location":"Data + from Figure 2a","messages":false,"name":"Predicted mass","processed_name":"Predictedmass","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760917?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760918?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Classification + score/csv","json":"https://www.hepdata.net/download/table/ins2851948/Classification + score/json","root":"https://www.hepdata.net/download/table/ins2851948/Classification + score/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Classification + score/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Classification + score/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Classification + score/yoda1"},"description":"Classification NN output variable, for data, + reweighted background, and three $H\\rightarrow Za$ signal hypotheses ($a\\rightarrow + q\\bar{q}/gg$ inclusively). Events are required...","doi":"10.17182/hepdata.153859.v1/t6","id":1718738,"location":"Data + from Figure 2b","messages":false,"name":"Classification score","processed_name":"Classificationscore","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760920?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760921?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Pre-fit + dilepton+jet mass/csv","json":"https://www.hepdata.net/download/table/ins2851948/Pre-fit + dilepton+jet mass/json","root":"https://www.hepdata.net/download/table/ins2851948/Pre-fit + dilepton+jet mass/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Pre-fit + dilepton+jet mass/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Pre-fit + dilepton+jet mass/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Pre-fit + dilepton+jet mass/yoda1"},"description":"Invariant mass of the lepton pair + plus jet system for data, reweighted background, and various signal hypotheses. + Events are required...","doi":"10.17182/hepdata.153859.v1/t7","id":1718739,"location":"Data + from Figure 3a","messages":false,"name":"Pre-fit dilepton+jet mass","processed_name":"Pre-fitdilepton+jetmass","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760923?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760924?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Post-fit + dilepton+jet mass/csv","json":"https://www.hepdata.net/download/table/ins2851948/Post-fit + dilepton+jet mass/json","root":"https://www.hepdata.net/download/table/ins2851948/Post-fit + dilepton+jet mass/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Post-fit + dilepton+jet mass/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Post-fit + dilepton+jet mass/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Post-fit + dilepton+jet mass/yoda1"},"description":"Invariant mass of the lepton pair + plus jet system for data, reweighted background, and 2.0 GeV signal hypotheses. + Events are...","doi":"10.17182/hepdata.153859.v1/t8","id":1718740,"location":"Data + from Figure 3b","messages":false,"name":"Post-fit dilepton+jet mass","processed_name":"Post-fitdilepton+jetmass","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760926?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760927?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a %5Cto gg)=1$/csv","json":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a %5Cto gg)=1$/json","root":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a %5Cto gg)=1$/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a %5Cto gg)=1$/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a %5Cto gg)=1$/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a %5Cto gg)=1$/yoda1"},"description":"Observed 95$\\%$ + CL upper limits on $\\mathcal{B}(H \\to Za)=100\\%$ for $\\mathcal{B}(a \\to + gg)=100\\%$, and the expectation under the background-only hypothesis...","doi":"10.17182/hepdata.153859.v1/t9","id":1718741,"location":"Data + from Figure 4a","messages":false,"name":"Upper limits for $\\mathcal{B}(a + \\to gg)=1$","processed_name":"Upperlimitsfor$\\mathcal{B}(a\\togg)=1$","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760929?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760930?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a%5Crightarrow q%5Cbar{q})=1$/csv","json":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a%5Crightarrow q%5Cbar{q})=1$/json","root":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a%5Crightarrow q%5Cbar{q})=1$/root","yaml":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a%5Crightarrow q%5Cbar{q})=1$/yaml","yoda":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a%5Crightarrow q%5Cbar{q})=1$/yoda","yoda1":"https://www.hepdata.net/download/table/ins2851948/Upper + limits for $%5Cmathcal{B}(a%5Crightarrow q%5Cbar{q})=1$/yoda1"},"description":"Observed + 95$\\%$ confidence level upper limits on $\\mathcal{B}(H \\to Za)=100\\%$ + for $\\mathcal{B}(a\\rightarrow q\\bar{q})=100\\%$, and the expectation under + the background-only hypothesis...","doi":"10.17182/hepdata.153859.v1/t10","id":1718742,"location":"Data + from Figure 4b","messages":false,"name":"Upper limits for $\\mathcal{B}(a\\rightarrow + q\\bar{q})=1$","processed_name":"Upperlimitsfor$\\mathcal{B}(a\\rightarrowq\\bar{q})=1$","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3760932?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3760933?landing_page=true"}]}],"mode":"record","participant_count":3,"recid":153859,"record":{"abstract":"A + search for decays of the Higgs boson into a $Z$ boson and a light resonance, + with a mass of 0.5-3.5 GeV, is performed using the full 140 fb$^{-1}$ dataset + of 13 TeV proton-proton collisions recorded by the ATLAS detector during Run~2 + of the LHC. Leptonic decays of the $Z$ boson and hadronic decays of the light + resonance are considered. The resonance can be interpreted as a $J/\\psi$ + or $\\eta_c$ meson, an axion-like particle, or a light pseudoscalar in two-Higgs-doublet + models. Due to its low mass, it would be produced with high boost and reconstructed + as a single small-radius jet of hadrons. A neural network is used to correct + the Monte Carlo simulation of the background in a data-driven way. Two additional + neural networks are used to distinguish signal from background. A binned profile-likelihood + fit is performed on the final-state invariant mass distribution. No significant + excess of events relative to the expected background is observed, and upper + limits at 95% confidence level are set on the Higgs boson''s branching fraction + to a $Z$ boson and a light resonance. The exclusion limit is 10% for the lower + masses, and increases for higher masses. Upper limits on the effective coupling + $C^\\text{eff}_{ZH}/\\Lambda$ of an axion-like particle to a Higgs boson and + $Z$ boson are also set at 95% confidence level, and range from 0.9 to 2 TeV$^{-1}$.","access_urls":{"links":{"csv":"https://www.hepdata.net/download/submission/ins2851948/1/csv","json":"https://www.hepdata.net/download/submission/ins2851948/1/json","root":"https://www.hepdata.net/download/submission/ins2851948/1/root","yaml":"https://www.hepdata.net/download/submission/ins2851948/1/yaml","yoda":"https://www.hepdata.net/download/submission/ins2851948/1/yoda"}},"analyses":[],"arxiv_id":"arXiv:2411.16361","collaborations":["ATLAS"],"control_number":"153859","creation_date":"2024-11-25","data_abstract":"A + search for decays of the Higgs boson into a $Z$ boson and a light resonance, + with a mass of 0.5-4 GeV, is performed using the full 140 fb$^{-1}$ dataset + of 13 TeV proton-proton collisions recorded by the ATLAS detector during Run + 2 of the LHC. Leptonic decays of the $Z$ boson and hadronic decays of the + light resonance are considered. The resonance can be interpreted as a $J/\\psi$ + or $\\eta_c$ meson, an axion-like particle, or a light pseudoscalar in two-Higgs-doublet + models. Due to its low mass, it would be produced with high boost and reconstructed + as a single small-radius jet of hadrons. A neural network is used to correct + the Monte Carlo simulation of the background in a data-driven way. Two additional + neural networks are used to distinguish signal from background. A binned profile-likelihood + fit is performed on the final-state invariant mass distribution. Since no + significant excess of events relative to the expected background is observed, + 95% CL upper limits are set on the Higgs boson''s branching fraction to a + $Z$ boson and a light resonance.","data_keywords":{"cmenergies":[{"gte":13000.0,"lte":13000.0}],"observables":["$m_{llj}$","Regression + NN output","CLS","Classification NN output","Angularity_{tracks}(0.2)","$p_{T_Z}$","M_{2, + tracks}(0.3)"],"phrases":["2HDM(+S)","Higgs boson"],"reactions":["p p ---> + H ---> Z a"]},"doc_type":"publication","doi":null,"first_author":{"affiliation":"Marseille, + CPPM","full_name":"Aad, Georges"},"hepdata_doi":"10.17182/hepdata.153859","id":153859,"inspire_id":"2851948","journal_info":"CERN-EP-2024-261","keywords":[],"last_updated":"Wed, + 04 Dec 2024 13:04:31 GMT","parent_child_join":{"name":"parent_publication"},"publication_date":"2024-12-04T00:00:00","recid":153859,"resources":[{"description":"Created + with hepdata_lib 0.16.0","type":"zenodo","url":"https://doi.org/10.5281/zenodo.1217998"}],"subject_area":["hep-ex"],"summary_authors":[{"affiliation":"Marseille, + CPPM","full_name":"Aad, Georges"},{"affiliation":"Bergen U.","full_name":"Aakvaag, + Erlend"},{"affiliation":"Oklahoma U.","full_name":"Abbott, Braden Keim"},{"affiliation":"New + York U., Abu Dhabi","full_name":"Abdelhameed, Sara"},{"affiliation":"Gottingen + U., II. Phys. Inst.","full_name":"Abeling, Kira"},{"affiliation":"Dortmund + U.","full_name":"Abicht, Nils Julius"},{"affiliation":"Brookhaven","full_name":"Abidi, + Haider"},{"affiliation":"Southern Methodist U.","full_name":"Aboelela, Mohammed"},{"affiliation":"Mohammed + V U., Agdal","full_name":"Aboulhorma, Asmaa"},{"affiliation":"Tel Aviv U.","full_name":"Abramowicz, + Halina"}],"title":"Search for Higgs boson decays into a $Z$ boson and a light + hadronically decaying resonance in 140 fb$^{-1}$ of 13 TeV $p$$p$ collisions + with the ATLAS detector","type":["article"],"uuid":"caa15267-c032-4e34-bbe0-d4ba232362a2","version":1,"year":"2024"},"record_type":"publication","related_recids":[],"related_to_this_recids":[],"resources_with_doi":[],"reviewers_notified":false,"site_url":"https://www.hepdata.net","status":"finished","table_id_to_show":1718733,"table_name_to_show":"Angularity + distribution","version":1,"version_count":1,"watched":false} + + ' + headers: + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443";ma=60; + content-length: + - '17442' + content-type: + - application/json + date: + - Wed, 04 Dec 2024 15:06:21 GMT + permissions-policy: + - interest-cohort=() + referrer-policy: + - strict-origin-when-cross-origin + retry-after: + - '59' + server: + - gunicorn + set-cookie: + - session=1b8865cf992d594c_67506fed.Xvz6uPpDX8bEDdKZnc36X8U65Bg; Domain=.www.hepdata.net; + Expires=Thu, 05 Dec 2024 03:06:21 GMT; HttpOnly; Path=/; SameSite=Lax + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - sameorigin + x-proxy-backend: + - hepdata-prod_hepdata-web_http + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '59' + x-ratelimit-reset: + - '1733324841' + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/workflows/tests/cassettes/TestDataHarvest.test_download_record_versions.yaml b/workflows/tests/cassettes/TestDataHarvest.test_download_record_versions.yaml new file mode 100644 index 000000000..9fbaa7a7b --- /dev/null +++ b/workflows/tests/cassettes/TestDataHarvest.test_download_record_versions.yaml @@ -0,0 +1,5517 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: https://www.hepdata.net/record/ins1906174?format=json + response: + body: + string: '{"access_count":{"sum":13371},"additional_resources":true,"breadcrumb_text":"Aad, + Georges et al.","coordinator":40,"data_tables":[{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/csv","json":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/json","root":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/yoda1"},"description":"- - - - - - - - Overview of HEPData Record + - - - - - - - -...","doi":"10.17182/hepdata.104458.v3/t1","id":1583811,"location":null,"messages":false,"name":"Table + of contents","processed_name":"Tableofcontents","resources":[]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/csv","json":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/json","root":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/yoda1"},"description":"Cut flows of some + representative signals up to SR-4Q-VV, SR-2B2Q-VZ, and SR-2B2Q-Vh. One signal + point from the $(\\tilde{W},~\\tilde{B})$ simplified models...","doi":"10.17182/hepdata.104458.v3/t2","id":1583812,"location":"Table + 1 auxiliary material","messages":false,"name":"Cut flows for the representative + signals","processed_name":"Cutflowsfortherepresentativesignals","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458721?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458722?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/yoda1"},"description":"The boson-tagging efficiency + for jets arising from $W/Z$ bosons decaying into $q\\bar{q}$ (signal jets) + are shown. The signal jet efficiency...","doi":"10.17182/hepdata.104458.v3/t3","id":1583813,"location":"Figure + 4a","messages":false,"name":"$W/Z\\rightarrow qq$ tagging efficiency","processed_name":"$W/Z\\rightarrowqq$taggingefficiency","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458724?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458725?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/yoda1"},"description":"The rejection factor (inverse + of the efficiency) for jets that have the other origins (background jets) + are shown. The background...","doi":"10.17182/hepdata.104458.v3/t4","id":1583814,"location":"Figure + 4b","messages":false,"name":"$W/Z\\rightarrow qq$ tagging rejection","processed_name":"$W/Z\\rightarrowqq$taggingrejection","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458727?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458728?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/yoda1"},"description":"The boson-tagging + efficiency for jets arising from $Z/h$ bosons decaying into $b\\bar{b}$ (signal + jets). The signal jet efficiency of $Z_{bb}$/$h_{bb}$-tagging...","doi":"10.17182/hepdata.104458.v3/t5","id":1583815,"location":"Figure + 4c","messages":false,"name":"$Z/h \\rightarrow bb$ tagging efficiency","processed_name":"$Z/h\\rightarrowbb$taggingefficiency","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458730?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458731?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/yoda1"},"description":"The rejection factor + (inverse of the efficiency) for jets that have the other origins (background + jets) are shown. The background...","doi":"10.17182/hepdata.104458.v3/t6","id":1583816,"location":"Figure + 4d","messages":false,"name":"$Z/h \\rightarrow bb$ tagging rejection","processed_name":"$Z/h\\rightarrowbb$taggingrejection","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458733?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458734?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal + jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v3/t7","id":1583817,"location":"Figure + 1a auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging + efficiency (vs official WP)","processed_name":"$W\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458736?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458737?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet + efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v3/t8","id":1583818,"location":"Figure + 1c auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging + rejection (vs official WP)","processed_name":"$W\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458739?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458740?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal + jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v3/t9","id":1583819,"location":"Figure + 1b auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging + efficiency (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458742?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458743?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet + efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v3/t10","id":1583820,"location":"Figure + 1d auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging + rejection (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458745?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458746?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/csv","json":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/json","root":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/yoda1"},"description":"The total post-fit uncertainty + in each of the SRs and VRs.","doi":"10.17182/hepdata.104458.v3/t11","id":1583821,"location":"Figure + 9","messages":false,"name":"Total systematic uncertainties","processed_name":"Totalsystematicuncertainties","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458748?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458749?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/json","root":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/yoda1"},"description":"Summary + of the observed data and predicted SM background in all SRs. The background + prediction in SR-4Q (SR-2B2Q) is obtained...","doi":"10.17182/hepdata.104458.v3/t12","id":1583822,"location":"Figure + 10","messages":false,"name":"Data yields and background expectation in the + SRs","processed_name":"DatayieldsandbackgroundexpectationintheSRs","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458751?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458752?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/json","root":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/yoda1"},"description":"Number of observed + data events and the SM backgrounds in the SRs and the CR0L bins. The SM backgrounds + are...","doi":"10.17182/hepdata.104458.v3/t13","id":1583823,"location":"Table + 5","messages":false,"name":"Data yields and background breakdown in SR","processed_name":"DatayieldsandbackgroundbreakdowninSR","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458754?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458755?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/json","root":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/yoda1"},"description":"Number + of observed data events and the post-fit SM background prediction in the VR1L(1Y) + bins and the corresponding CR1L(1Y) bins....","doi":"10.17182/hepdata.104458.v3/t14","id":1583824,"location":"Table + 4","messages":false,"name":"Data yields and background breakdown in CR/VR + 1L(1Y)","processed_name":"DatayieldsandbackgroundbreakdowninCR/VR1L(1Y)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458757?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458758?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/yoda1"},"description":"$m_{\\textrm{eff}}$ distribution + in SR-4Q-VV. The post-fit SM background expectation using the background-only + fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v3/t15","id":1583825,"location":"Figure + 11a","messages":false,"name":"Effective mass distribution in SR-4Q-VV","processed_name":"EffectivemassdistributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458760?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458761?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $m(J_{1})$ in SR-4Q-VV. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v3/t16","id":1583826,"location":"Figure + 2a auxiliary material","messages":false,"name":"Leading large-$R$ jet mass + distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458763?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458764?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $D_2(J_{1})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging + ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v3/t17","id":1583827,"location":"Figure + 2b auxiliary material","messages":false,"name":"Leading large-$R$ jet $D_{2}$ + distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458766?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458767?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $m(J_{2})$ in SR-4Q-VV. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v3/t18","id":1583828,"location":"Figure + 2c auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet + mass distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458769?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458770?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $D_2(J_{2})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging + ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v3/t19","id":1583829,"location":"Figure + 2d auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet + $D_{2}$ distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458772?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458773?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions + in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only + fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v3/t20","id":1583830,"location":"Figure + 11b","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-VZ","processed_name":"$m_{T2}$distributioninSR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458775?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458776?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of + $m(J_{bb})$ in SR-2B2Q-VZ. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v3/t21","id":1583831,"location":"Figure + 3a auxiliary material","messages":false,"name":"bb-tagged jet mass distribution + in SR-2B2Q-VZ","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458778?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458779?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} + $ in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only + fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v3/t22","id":1583832,"location":"Figure + 3c auxiliary material","messages":false,"name":"Effective mass distribution + in SR-2B2Q-VZ","processed_name":"EffectivemassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458781?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458782?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions + in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only + fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v3/t23","id":1583833,"location":"Figure + 11c","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-Vh","processed_name":"$m_{T2}$distributioninSR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458784?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458785?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of + $m(J_{bb})$ in SR-2B2Q-Vh. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v3/t24","id":1583834,"location":"Figure + 3b auxiliary material","messages":false,"name":"bb-tagged jet mass distribution + in SR-2B2Q-Vh","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458787?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458788?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} + $ in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only + fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v3/t25","id":1583835,"location":"Figure + 3d auxiliary material","messages":false,"name":"Effective mass distribution + in SR-2B2Q-Vh","processed_name":"EffectivemassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458790?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458791?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t26","id":1583836,"location":"Figure + 15a","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458793?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458794?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t27","id":1583837,"location":"Figure + 15a","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model + (C1C1-WW)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458796?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458797?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t28","id":1583838,"location":"Figure + 15a","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458799?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458800?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t29","id":1583839,"location":"Figure + 15a","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model + (C1C1-WW)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458802?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458803?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t30","id":1583840,"location":"Figure + 15a","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model + (C1C1-WW)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458805?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458806?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t31","id":1583841,"location":"Figure + 15b","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458808?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458809?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t32","id":1583842,"location":"Figure + 15b","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458811?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458812?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t33","id":1583843,"location":"Figure + 15b","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458814?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458815?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t34","id":1583844,"location":"Figure + 15b","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458817?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458818?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t35","id":1583845,"location":"Figure + 15b","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458820?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458821?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t36","id":1583846,"location":"Figure + 15b","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458823?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458824?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t37","id":1583847,"location":"Figure + 15c","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458826?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458827?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t38","id":1583848,"location":"Figure + 15c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458829?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458830?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t39","id":1583849,"location":"Figure + 15c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458832?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458833?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t40","id":1583850,"location":"Figure + 15c","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458835?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458836?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t41","id":1583851,"location":"Figure + 15c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458838?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458839?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t42","id":1583852,"location":"Figure + 15c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458841?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458842?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t43","id":1583853,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458844?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458845?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t44","id":1583854,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458847?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458848?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t45","id":1583855,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458850?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458851?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t46","id":1583856,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458853?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458854?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t47","id":1583857,"location":"Figure + 12a,12c","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458856?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458857?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t48","id":1583858,"location":"Figure + 12c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458859?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458860?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t49","id":1583859,"location":"Figure + 12c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458862?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458863?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t50","id":1583860,"location":"Figure + 12b,12c","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458865?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458866?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t51","id":1583861,"location":"Figure + 12c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458868?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458869?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t52","id":1583862,"location":"Figure + 12c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458871?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458872?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t53","id":1583863,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458874?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458875?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t54","id":1583864,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458877?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458878?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t55","id":1583865,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458880?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458881?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t56","id":1583866,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458883?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458884?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t57","id":1583867,"location":"Figure + 12a,12d","messages":false,"name":"Exp limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458886?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458887?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t58","id":1583868,"location":"Figure + 12d","messages":false,"name":"Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458889?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458890?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v3/t59","id":1583869,"location":"Figure + 12b,12d","messages":false,"name":"Obs limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458892?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458893?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t60","id":1583870,"location":"Figure + 12d","messages":false,"name":"Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458895?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458896?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t61","id":1583871,"location":"Figure + 12d","messages":false,"name":"Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458898?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458899?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t62","id":1583872,"location":"Figure + 14c","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, mu>0","processed_name":"Explimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458901?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458902?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t63","id":1583873,"location":"Figure + 14c","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458904?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458905?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t64","id":1583874,"location":"Figure + 14c","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458907?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458908?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t65","id":1583875,"location":"Figure + 14c","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458910?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458911?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t66","id":1583876,"location":"Figure + 14c","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458913?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458914?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t67","id":1583877,"location":"Figure + 14c","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458916?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458917?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t68","id":1583878,"location":"Figure + 14d","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, mu>0","processed_name":"Explimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458919?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458920?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t69","id":1583879,"location":"Figure + 14d","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458922?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458923?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t70","id":1583880,"location":"Figure + 14d","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458925?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458926?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t71","id":1583881,"location":"Figure + 14d","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458928?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458929?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t72","id":1583882,"location":"Figure + 14d","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458931?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458932?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t73","id":1583883,"location":"Figure + 14b","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458934?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458935?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t74","id":1583884,"location":"Figure + 14a","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458937?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458938?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t75","id":1583885,"location":"Figure + 14a","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458940?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458941?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t76","id":1583886,"location":"Figure + 14b","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458943?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458944?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t77","id":1583887,"location":"Figure + 14a","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458946?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458947?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t78","id":1583888,"location":"Figure + 14a","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458949?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458950?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t79","id":1583889,"location":"Figure + 14b","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Explimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458952?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458953?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t80","id":1583890,"location":"Figure + 14a","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, M2 + vs mu","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458955?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458956?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t81","id":1583891,"location":"Figure + 14b","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458958?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458959?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t82","id":1583892,"location":"Figure + 14a","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458961?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458962?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t83","id":1583893,"location":"Figure + 14a","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458964?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458965?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid + red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, + as a function of the...","doi":"10.17182/hepdata.104458.v3/t84","id":1583894,"location":"Figure + 16","messages":false,"name":"Exp limit on (H~, G~)","processed_name":"Explimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458967?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458968?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t85","id":1583895,"location":"Figure + 16","messages":false,"name":"Exp limit (+1sig) on (H~, G~)","processed_name":"Explimit(+1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458970?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458971?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t86","id":1583896,"location":"Figure + 16","messages":false,"name":"Exp limit (-1sig) on (H~, G~)","processed_name":"Explimit(-1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458973?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458974?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid + red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, + as a function of the...","doi":"10.17182/hepdata.104458.v3/t87","id":1583897,"location":"Figure + 16","messages":false,"name":"Obs limit on (H~, G~)","processed_name":"Obslimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458976?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458977?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t88","id":1583898,"location":"Figure + 16","messages":false,"name":"Obs limit (+1sig) on (H~, G~)","processed_name":"Obslimit(+1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458979?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458980?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t89","id":1583899,"location":"Figure + 16","messages":false,"name":"Obs limit (-1sig) on (H~, G~)","processed_name":"Obslimit(-1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458982?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458983?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t90","id":1583900,"location":"Figure + 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458985?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458986?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t91","id":1583901,"location":"Figure + 17a","messages":false,"name":"Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458988?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458989?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t92","id":1583902,"location":"Figure + 17a","messages":false,"name":"Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458991?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458992?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t93","id":1583903,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458994?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458995?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t94","id":1583904,"location":"Figure + 17a","messages":false,"name":"Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3458997?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3458998?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t95","id":1583905,"location":"Figure + 17a","messages":false,"name":"Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459000?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459001?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t96","id":1583906,"location":"Figure + 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459003?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459004?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t97","id":1583907,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459006?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459007?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t98","id":1583908,"location":"Figure + 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459009?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459010?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t99","id":1583909,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459012?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459013?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t100","id":1583910,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 25%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=25%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459015?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459016?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t101","id":1583911,"location":"Figure + 4a auxiliary material","messages":false,"name":"B(C2->W+N1,N2) in (W~, H~), + tanb=10, mu>0","processed_name":"B(C2->W+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459018?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459019?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t102","id":1583912,"location":"Figure + 4c auxiliary material","messages":false,"name":"B(C2->Z+C1) in (W~, H~), tanb=10, + mu>0","processed_name":"B(C2->Z+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459021?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459022?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t103","id":1583913,"location":"Figure + 4e auxiliary material","messages":false,"name":"B(C2->h+C1) in (W~, H~), tanb=10, + mu>0","processed_name":"B(C2->h+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459024?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459025?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t104","id":1583914,"location":"Figure + 4b auxiliary material","messages":false,"name":"B(N3->W+C1) in (W~, H~), tanb=10, + mu>0","processed_name":"B(N3->W+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459027?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459028?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t105","id":1583915,"location":"Figure + 4d auxiliary material","messages":false,"name":"B(N3->Z+N1,N2) in (W~, H~), + tanb=10, mu>0","processed_name":"B(N3->Z+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459030?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459031?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t106","id":1583916,"location":"Figure + 4f auxiliary material","messages":false,"name":"B(N3->h+N1,N2) in (W~, H~), + tanb=10, mu>0","processed_name":"B(N3->h+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459033?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459034?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t107","id":1583917,"location":"Figure + 5a auxiliary material","messages":false,"name":"B(C2->W+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(C2->W+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459036?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459037?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t108","id":1583918,"location":"Figure + 5b auxiliary material","messages":false,"name":"B(C2->Z+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(C2->Z+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459039?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459040?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t109","id":1583919,"location":"Figure + 5c auxiliary material","messages":false,"name":"B(C2->h+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(C2->h+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459042?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459043?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t110","id":1583920,"location":"Figure + 5d auxiliary material","messages":false,"name":"B(N2->W+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N2->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459045?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459046?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t111","id":1583921,"location":"Figure + 5e auxiliary material","messages":false,"name":"B(N2->Z+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N2->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459048?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459049?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t112","id":1583922,"location":"Figure + 5f auxiliary material","messages":false,"name":"B(N2->h+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N2->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459051?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459052?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t113","id":1583923,"location":"Figure + 5g auxiliary material","messages":false,"name":"B(N3->W+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N3->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459054?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459055?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t114","id":1583924,"location":"Figure + 5h auxiliary material","messages":false,"name":"B(N3->Z+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N3->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459057?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459058?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t115","id":1583925,"location":"Figure + 5i auxiliary material","messages":false,"name":"B(N3->h+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N3->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459060?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459061?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1C1-WW). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v3/t116","id":1583926,"location":"Figure + 7a auxiliary material","messages":false,"name":"Expected cross-section upper + limit on C1C1-WW","processed_name":"Expectedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459063?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459064?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-WZ). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v3/t117","id":1583927,"location":"Figure + 7b auxiliary material","messages":false,"name":"Expected cross-section upper + limit on C1N2-WZ","processed_name":"Expectedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459066?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459067?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-Wh). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v3/t118","id":1583928,"location":"Figure + 7c auxiliary material","messages":false,"name":"Expected cross-section upper + limit on C1N2-Wh","processed_name":"Expectedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459069?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459070?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ + models. The black numbers represents the expected cross-section upper-limits.","doi":"10.17182/hepdata.104458.v3/t119","id":1583929,"location":"Figure + 7d auxiliary material","messages":false,"name":"Expected cross-section upper + limit on (H~, G~)","processed_name":"Expectedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459072?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459073?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1C1-WW). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v3/t120","id":1583930,"location":"Figure + 8a auxiliary material","messages":false,"name":"Observed cross-section upper + limit on C1C1-WW","processed_name":"Observedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459075?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459076?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-WZ). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v3/t121","id":1583931,"location":"Figure + 8b auxiliary material","messages":false,"name":"Observed cross-section upper + limit on C1N2-WZ","processed_name":"Observedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459078?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459079?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-Wh). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v3/t122","id":1583932,"location":"Figure + 8c auxiliary material","messages":false,"name":"Observed cross-section upper + limit on C1N2-Wh","processed_name":"Observedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459081?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459082?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ + models. The black numbers represents the observed cross-section upper-limits.","doi":"10.17182/hepdata.104458.v3/t123","id":1583933,"location":"Figure + 8d auxiliary material","messages":false,"name":"Observed cross-section upper + limit on (H~, G~)","processed_name":"Observedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459084?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459085?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + $(\\tilde{W},\\tilde{B})$ simplified models (C1C1-WW) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t124","id":1583934,"location":"Figure + 9a auxiliary material","messages":false,"name":"Acceptance of C1C1-WW signals + by SR-4Q-VV","processed_name":"AcceptanceofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459087?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459088?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t125","id":1583935,"location":"Figure + 9b auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals + by SR-4Q-VV","processed_name":"AcceptanceofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459090?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459091?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance + of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t126","id":1583936,"location":"Figure + 9c auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals + by SR-2B2Q-VZ","processed_name":"AcceptanceofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459093?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459094?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-Wh) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t127","id":1583937,"location":"Figure + 9d auxiliary material","messages":false,"name":"Acceptance of C1N2-Wh signals + by SR-2B2Q-Vh","processed_name":"AcceptanceofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459096?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459097?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t128","id":1583938,"location":"Figure + 10a auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals + by SR-4Q-VV","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459099?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459100?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance + of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t129","id":1583939,"location":"Figure + 10b auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals + by SR-2B2Q-VZ","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459102?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459103?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-Zh) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t130","id":1583940,"location":"Figure + 10c auxiliary material","messages":false,"name":"Acceptance of N2N3-Zh signals + by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459105?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459106?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-hh) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t131","id":1583941,"location":"Figure + 10d auxiliary material","messages":false,"name":"Acceptance of N2N3-hh signals + by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459108?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459109?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + the $(\\tilde{H},\\tilde{G})$ model by SR-4Q-VV, evaluated using MC simulation. + The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v3/t132","id":1583942,"location":"Figure + 11a auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals + by SR-4Q-VV","processed_name":"Acceptanceof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459111?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459112?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance + of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-VZ, evaluated using MC simulation. + The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v3/t133","id":1583943,"location":"Figure + 11b auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals + by SR-2B2Q-VZ","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459114?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459115?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-Vh, evaluated using MC simulation. + The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v3/t134","id":1583944,"location":"Figure + 11c auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals + by SR-2B2Q-Vh","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459117?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459118?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1C1-WW) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t135","id":1583945,"location":"Figure + 12a auxiliary material","messages":false,"name":"Efficiency of C1C1-WW signals + by SR-4Q-VV","processed_name":"EfficiencyofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459120?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459121?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t136","id":1583946,"location":"Figure + 12b auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals + by SR-4Q-VV","processed_name":"EfficiencyofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459123?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459124?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t137","id":1583947,"location":"Figure + 12c auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals + by SR-2B2Q-VZ","processed_name":"EfficiencyofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459126?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459127?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1N2-Wh) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t138","id":1583948,"location":"Figure + 12d auxiliary material","messages":false,"name":"Efficiency of C1N2-Wh signals + by SR-2B2Q-Vh","processed_name":"EfficiencyofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459129?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459130?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t139","id":1583949,"location":"Figure + 13a auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals + by SR-4Q-VV","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459132?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459133?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t140","id":1583950,"location":"Figure + 13b auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals + by SR-2B2Q-VZ","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459135?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459136?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-Zh) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t141","id":1583951,"location":"Figure + 13c auxiliary material","messages":false,"name":"Efficiency of N2N3-Zh signals + by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459138?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459139?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-hh) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t142","id":1583952,"location":"Figure + 13d auxiliary material","messages":false,"name":"Efficiency of N2N3-hh signals + by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459141?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459142?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ + in SR-4Q-VV. The efficiency in a given SR is defined by the ratio of weighted + events selected...","doi":"10.17182/hepdata.104458.v3/t143","id":1583953,"location":"Figure + 14a auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals + by SR-4Q-VV","processed_name":"Efficiencyof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459144?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459145?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ + in SR-2B2Q-VZ. The efficiency in a given SR is defined by the ratio of weighted + events selected...","doi":"10.17182/hepdata.104458.v3/t144","id":1583954,"location":"Figure + 14b auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals + by SR-2B2Q-VZ","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459147?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459148?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ + in SR-2B2Q-Vh. The efficiency in a given SR is defined by the ratio of weighted + events selected...","doi":"10.17182/hepdata.104458.v3/t145","id":1583955,"location":"Figure + 14c auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals + by SR-2B2Q-Vh","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3459150?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3459151?landing_page=true"}]}],"mode":"record","participant_count":3,"recid":104458,"record":{"abstract":"A + search for charginos and neutralinos at the Large Hadron Collider is reported + using fully hadronic final states and missing transverse momentum. Pair-produced + charginos or neutralinos are explored, each decaying into a high-$p_{\\text{T}}$ + Standard Model weak boson. Fully-hadronic final states are studied to exploit + the advantage of the large branching ratio, and the efficient background rejection + by identifying the high-$p_{\\text{T}}$ bosons using large-radius jets and + jet substructure information. An integrated luminosity of 139 fb$^{-1}$ of + proton-proton collision data collected by the ATLAS detector at a center-of-mass + energy of 13 TeV is used. No significant excess is found beyond the Standard + Model expectation. The 95% confidence level exclusion limits are set on wino + or higgsino production with varying assumptions in the decay branching ratios + and the type of the lightest supersymmetric particle. A wino (higgsino) mass + up to 1060 (900) GeV is excluded when the lightest SUSY particle mass is below + 400 (240) GeV and the mass splitting is larger than 400 (450) GeV. The sensitivity + to high-mass wino and higgsino is significantly extended compared with the + previous LHC searches using the other final states.","access_urls":{"links":{"csv":"https://www.hepdata.net/download/submission/ins1906174/3/csv","json":"https://www.hepdata.net/download/submission/ins1906174/3/json","root":"https://www.hepdata.net/download/submission/ins1906174/3/root","yaml":"https://www.hepdata.net/download/submission/ins1906174/3/yaml","yoda":"https://www.hepdata.net/download/submission/ins1906174/3/yoda"}},"analyses":[{"analysis":"https://www.hepdata.net/record/resource/3458718?landing_page=true","filename":"FullLikelihood_forHEPData.tar","type":"HistFactory"},{"analysis":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41","type":"SModelS"}],"arxiv_id":"arXiv:2108.07586","collaborations":["ATLAS"],"control_number":"104458","creation_date":"2021-08-17","data_abstract":"","doc_type":"publication","doi":"10.1103/PhysRevD.104.112010","first_author":{"affiliation":"Marseille, + CPPM","full_name":"Aad, Georges"},"hepdata_doi":"10.17182/hepdata.104458.v3","id":104458,"inspire_id":"1906174","journal_info":"Phys.Rev.D + 104 (2021) 112010","keywords":[{"schema":"INSPIRE","value":"p p: colliding + beams"},{"schema":"INSPIRE","value":"transverse momentum: missing-energy"},{"schema":"INSPIRE","value":"p + p: scattering"},{"schema":"INSPIRE","value":"final state: hadronic"},{"schema":"INSPIRE","value":"final + state: ((n)jet)"},{"schema":"INSPIRE","value":"neutralino: pair production"},{"schema":"INSPIRE","value":"chargino: + pair production"},{"schema":"INSPIRE","value":"sparticle: branching ratio"},{"schema":"INSPIRE","value":"CERN + LHC Coll"},{"schema":"INSPIRE","value":"ATLAS"},{"schema":"INSPIRE","value":"sparticle: + pair production"},{"schema":"INSPIRE","value":"new physics: search for"},{"schema":"INSPIRE","value":"sensitivity"},{"schema":"INSPIRE","value":"vector + boson: hadronic decay"},{"schema":"INSPIRE","value":"mass difference"},{"schema":"INSPIRE","value":"supersymmetry"},{"schema":"INSPIRE","value":"background"},{"schema":"INSPIRE","value":"structure"},{"schema":"INSPIRE","value":"track + data analysis: jet"},{"schema":"INSPIRE","value":"channel cross section: upper + limit"},{"schema":"INSPIRE","value":"chargino: mass: lower limit"},{"schema":"INSPIRE","value":"neutralino: + mass: lower limit"},{"schema":"INSPIRE","value":"Higgsino: mass"},{"schema":"INSPIRE","value":"experimental + results"},{"schema":"INSPIRE","value":"13000 GeV-cms"},{"schema":"PDG","value":"S046PHA"},{"schema":"PDG","value":"S046WNO"}],"last_updated":"Mon, + 13 Nov 2023 13:29:57 GMT","parent_child_join":{"name":"parent_publication"},"publication_date":"2021-11-01T00:00:00","recid":104458,"resources":[{"description":"Webpage + with all figures and tables","type":"html","url":"https://atlas.web.cern.ch/Atlas/GROUPS/PHYSICS/PAPERS/SUSY-2018-41/"},{"description":"Analysis + code at truth label using SimpleAnalysis framework without boson tagging efficiency + due to lack of jet substructure variables","type":"C++","url":"https://www.hepdata.net/record/resource/3458710?landing_page=true"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","type":"SUSY Les + Houches Accord","url":"https://www.hepdata.net/record/resource/3458711?landing_page=true"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","type":"SUSY Les + Houches Accord","url":"https://www.hepdata.net/record/resource/3458712?landing_page=true"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","type":"SUSY Les + Houches Accord","url":"https://www.hepdata.net/record/resource/3458713?landing_page=true"},{"description":"SHLA + file for GGM-Higgsino model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458714?landing_page=true"},{"description":"SHLA + file for N2N3-ZZ hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458715?landing_page=true"},{"description":"SHLA + file for N2N3-Zh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458716?landing_page=true"},{"description":"SHLA + file for N2N3-hh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458717?landing_page=true"},{"description":"HistFactory + likelihoods JSON files","type":"HistFactory","url":"https://www.hepdata.net/record/resource/3458718?landing_page=true"},{"description":null,"type":"SModelS","url":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41"}],"subject_area":["hep-ex"],"summary_authors":[{"affiliation":"Marseille, + CPPM","full_name":"Aad, Georges"},{"affiliation":"Oklahoma U.","full_name":"Abbott, + Braden Keim"},{"affiliation":"Massachusetts U., Amherst","full_name":"Abbott, + Dale"},{"affiliation":"CERN","full_name":"Abed Abud, Adam"},{"affiliation":"Gottingen + U., II. Phys. Inst.","full_name":"Abeling, Kira"},{"affiliation":"Royal Holloway, + U. of London","full_name":"Abhayasinghe, Deshan Kavishka"},{"affiliation":"Brookhaven","full_name":"Abidi, + Haider"},{"affiliation":"Tel Aviv U.","full_name":"Abramowicz, Halina"},{"affiliation":"Technion","full_name":"Abreu, + Henso"},{"affiliation":"Argonne","full_name":"Abulaiti, Yiming"}],"title":"Search + for charginos and neutralinos in final states with two boosted hadronically + decaying bosons and missing transverse momentum in $pp$ collisions at $\\sqrt{s}=13$ + TeV with the ATLAS detector","type":["article"],"uuid":"e06d0d13-c307-4ff4-a790-2e4295172b59","version":3,"year":"2021"},"record_type":"publication","related_recids":[],"related_to_this_recids":[],"resources_with_doi":[{"description":"Analysis + code at truth label using SimpleAnalysis framework without boson tagging efficiency + due to lack of jet substructure variables","doi":"10.17182/hepdata.104458.v3/r1","filename":"ANA-SUSY-2018-41.cxx"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","doi":"10.17182/hepdata.104458.v3/r2","filename":"susy_params_C1C1_WW_700_100.slha"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","doi":"10.17182/hepdata.104458.v3/r3","filename":"susy_params_C1N2_WZ_900_100.slha"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","doi":"10.17182/hepdata.104458.v3/r4","filename":"susy_params_C1N2_Wh_900_100.slha"},{"description":"SHLA + file for GGM-Higgsino model","doi":"10.17182/hepdata.104458.v3/r5","filename":"susy_params_GGMHino_C1N2N1_800.slha"},{"description":"SHLA + file for N2N3-ZZ hinoBino simplified model","doi":"10.17182/hepdata.104458.v3/r6","filename":"susy_params_N2N3_ZZ_800_100.slha"},{"description":"SHLA + file for N2N3-Zh hinoBino simplified model","doi":"10.17182/hepdata.104458.v3/r7","filename":"susy_params_N2N3_Zh_800_100.slha"},{"description":"SHLA + file for N2N3-hh hinoBino simplified model","doi":"10.17182/hepdata.104458.v3/r8","filename":"susy_params_N2N3_hh_800_100.slha"},{"description":"HistFactory + likelihoods JSON files","doi":"10.17182/hepdata.104458.v3/r9","filename":"FullLikelihood_forHEPData.tar"}],"reviewers_notified":false,"revision_message":{"message":"Added + CRs to likelihoods","version":3},"site_url":"https://www.hepdata.net","status":"finished","table_id_to_show":1583811,"table_name_to_show":"Table + of contents","version":3,"version_count":3,"watched":false} + + ' + headers: + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443";ma=60; + content-length: + - '198487' + content-type: + - application/json + date: + - Mon, 09 Dec 2024 10:22:53 GMT + permissions-policy: + - interest-cohort=() + referrer-policy: + - strict-origin-when-cross-origin + retry-after: + - '22' + server: + - gunicorn + set-cookie: + - session=bd52dcef27519598_6756c4fd.wgNMlLjC2sNGDdAD3MMOaqzmWAw; Domain=.www.hepdata.net; + Expires=Mon, 09 Dec 2024 22:22:53 GMT; HttpOnly; Path=/; SameSite=Lax + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - sameorigin + x-proxy-backend: + - hepdata-prod_hepdata-web_http + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '56' + x-ratelimit-reset: + - '1733739796' + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: https://www.hepdata.net/record/ins1906174?format=json&version=1 + response: + body: + string: '{"access_count":{"sum":13372},"additional_resources":true,"breadcrumb_text":"Aad, + Georges et al.","coordinator":40,"data_tables":[{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/csv","json":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/json","root":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/yoda1"},"description":"- - - - - - - - Overview of HEPData Record + - - - - - - - -...","doi":"10.17182/hepdata.104458.v1/t1","id":1210085,"location":null,"messages":false,"name":"Table + of contents","processed_name":"Tableofcontents","resources":[]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/csv","json":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/json","root":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/yoda1"},"description":"Cut flows of some + representative signals up to SR-4Q-VV, SR-2B2Q-VZ, and SR-2B2Q-Vh. One signal + point from the $(\\tilde{W},~\\tilde{B})$ simplified models...","doi":"10.17182/hepdata.104458.v1/t2","id":1210086,"location":"Table + 1 auxiliary material","messages":false,"name":"Cut flows for the representative + signals","processed_name":"Cutflowsfortherepresentativesignals","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653307?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653308?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/yoda1"},"description":"The boson-tagging efficiency + for jets arising from $W/Z$ bosons decaying into $q\\bar{q}$ (signal jets) + are shown. The signal jet efficiency...","doi":"10.17182/hepdata.104458.v1/t3","id":1210087,"location":"Figure + 4a","messages":false,"name":"$W/Z\\rightarrow qq$ tagging efficiency","processed_name":"$W/Z\\rightarrowqq$taggingefficiency","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653310?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653311?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/yoda1"},"description":"The rejection factor (inverse + of the efficiency) for jets that have the other origins (background jets) + are shown. The background...","doi":"10.17182/hepdata.104458.v1/t4","id":1210088,"location":"Figure + 4b","messages":false,"name":"$W/Z\\rightarrow qq$ tagging rejection","processed_name":"$W/Z\\rightarrowqq$taggingrejection","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653313?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653314?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/yoda1"},"description":"The boson-tagging + efficiency for jets arising from $Z/h$ bosons decaying into $b\\bar{b}$ (signal + jets). The signal jet efficiency of $Z_{bb}$/$h_{bb}$-tagging...","doi":"10.17182/hepdata.104458.v1/t5","id":1210089,"location":"Figure + 4c","messages":false,"name":"$Z/h \\rightarrow bb$ tagging efficiency","processed_name":"$Z/h\\rightarrowbb$taggingefficiency","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653316?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653317?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/yoda1"},"description":"The rejection factor + (inverse of the efficiency) for jets that have the other origins (background + jets) are shown. The background...","doi":"10.17182/hepdata.104458.v1/t6","id":1210090,"location":"Figure + 4d","messages":false,"name":"$Z/h \\rightarrow bb$ tagging rejection","processed_name":"$Z/h\\rightarrowbb$taggingrejection","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653319?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653320?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal + jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v1/t7","id":1210091,"location":"Figure + 1a auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging + efficiency (vs official WP)","processed_name":"$W\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653322?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653323?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet + efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v1/t8","id":1210092,"location":"Figure + 1c auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging + rejection (vs official WP)","processed_name":"$W\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653325?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653326?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal + jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v1/t9","id":1210093,"location":"Figure + 1b auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging + efficiency (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653328?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653329?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet + efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v1/t10","id":1210094,"location":"Figure + 1d auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging + rejection (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653331?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653332?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/csv","json":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/json","root":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/yoda1"},"description":"The total post-fit uncertainty + in each of the SRs and VRs.","doi":"10.17182/hepdata.104458.v1/t11","id":1210095,"location":"Figure + 9","messages":false,"name":"Total systematic uncertainties","processed_name":"Totalsystematicuncertainties","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653334?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653335?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/json","root":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/yoda1"},"description":"Summary + of the observed data and predicted SM background in all SRs. The background + prediction in SR-4Q (SR-2B2Q) is obtained...","doi":"10.17182/hepdata.104458.v1/t12","id":1210096,"location":"Figure + 10","messages":false,"name":"Data yields and background expectation in the + SRs","processed_name":"DatayieldsandbackgroundexpectationintheSRs","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653337?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653338?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/json","root":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/yoda1"},"description":"Number of observed + data events and the SM backgrounds in the SRs and the CR0L bins. The SM backgrounds + are...","doi":"10.17182/hepdata.104458.v1/t13","id":1210097,"location":"Table + 5","messages":false,"name":"Data yields and background breakdown in SR","processed_name":"DatayieldsandbackgroundbreakdowninSR","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653340?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653341?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/json","root":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/yoda1"},"description":"Number + of observed data events and the post-fit SM background prediction in the VR1L(1Y) + bins and the corresponding CR1L(1Y) bins....","doi":"10.17182/hepdata.104458.v1/t14","id":1210098,"location":"Table + 4","messages":false,"name":"Data yields and background breakdown in CR/VR + 1L(1Y)","processed_name":"DatayieldsandbackgroundbreakdowninCR/VR1L(1Y)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653343?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653344?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/yoda1"},"description":"$m_{\\textrm{eff}}$ distribution + in SR-4Q-VV. The post-fit SM background expectation using the background-only + fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v1/t15","id":1210099,"location":"Figure + 11a","messages":false,"name":"Effective mass distribution in SR-4Q-VV","processed_name":"EffectivemassdistributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653346?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653347?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $m(J_{1})$ in SR-4Q-VV. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v1/t16","id":1210100,"location":"Figure + 2a auxiliary material","messages":false,"name":"Leading large-$R$ jet mass + distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653349?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653350?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $D_2(J_{1})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging + ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v1/t17","id":1210101,"location":"Figure + 2b auxiliary material","messages":false,"name":"Leading large-$R$ jet $D_{2}$ + distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653352?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653353?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $m(J_{2})$ in SR-4Q-VV. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v1/t18","id":1210102,"location":"Figure + 2c auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet + mass distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653355?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653356?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $D_2(J_{2})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging + ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v1/t19","id":1210103,"location":"Figure + 2d auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet + $D_{2}$ distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653358?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653359?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions + in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only + fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v1/t20","id":1210104,"location":"Figure + 11b","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-VZ","processed_name":"$m_{T2}$distributioninSR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653361?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653362?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of + $m(J_{bb})$ in SR-2B2Q-VZ. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v1/t21","id":1210105,"location":"Figure + 3a auxiliary material","messages":false,"name":"bb-tagged jet mass distribution + in SR-2B2Q-VZ","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653364?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653365?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} + $ in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only + fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v1/t22","id":1210106,"location":"Figure + 3c auxiliary material","messages":false,"name":"Effective mass distribution + in SR-2B2Q-VZ","processed_name":"EffectivemassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653367?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653368?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions + in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only + fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v1/t23","id":1210107,"location":"Figure + 11c","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-Vh","processed_name":"$m_{T2}$distributioninSR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653370?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653371?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of + $m(J_{bb})$ in SR-2B2Q-Vh. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v1/t24","id":1210108,"location":"Figure + 3b auxiliary material","messages":false,"name":"bb-tagged jet mass distribution + in SR-2B2Q-Vh","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653373?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653374?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} + $ in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only + fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v1/t25","id":1210109,"location":"Figure + 3d auxiliary material","messages":false,"name":"Effective mass distribution + in SR-2B2Q-Vh","processed_name":"EffectivemassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653376?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653377?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t26","id":1210110,"location":"Figure + 15a","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653379?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653380?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t27","id":1210111,"location":"Figure + 15a","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model + (C1C1-WW)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653382?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653383?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t28","id":1210112,"location":"Figure + 15a","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653385?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653386?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t29","id":1210113,"location":"Figure + 15a","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model + (C1C1-WW)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653388?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653389?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t30","id":1210114,"location":"Figure + 15a","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model + (C1C1-WW)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653391?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653392?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t31","id":1210115,"location":"Figure + 15b","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653394?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653395?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t32","id":1210116,"location":"Figure + 15b","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653397?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653398?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t33","id":1210117,"location":"Figure + 15b","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653400?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653401?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t34","id":1210118,"location":"Figure + 15b","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653403?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653404?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t35","id":1210119,"location":"Figure + 15b","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653406?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653407?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t36","id":1210120,"location":"Figure + 15b","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653409?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653410?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t37","id":1210121,"location":"Figure + 15c","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653412?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653413?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t38","id":1210122,"location":"Figure + 15c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653415?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653416?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t39","id":1210123,"location":"Figure + 15c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653418?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653419?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t40","id":1210124,"location":"Figure + 15c","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653421?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653422?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t41","id":1210125,"location":"Figure + 15c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653424?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653425?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t42","id":1210126,"location":"Figure + 15c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653427?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653428?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t43","id":1210127,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653430?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653431?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t44","id":1210128,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653433?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653434?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t45","id":1210129,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653436?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653437?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t46","id":1210130,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653439?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653440?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t47","id":1210131,"location":"Figure + 12a,12c","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653442?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653443?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t48","id":1210132,"location":"Figure + 12c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653445?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653446?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t49","id":1210133,"location":"Figure + 12c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653448?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653449?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t50","id":1210134,"location":"Figure + 12b,12c","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653451?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653452?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t51","id":1210135,"location":"Figure + 12c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653454?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653455?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t52","id":1210136,"location":"Figure + 12c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653457?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653458?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t53","id":1210137,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653460?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653461?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t54","id":1210138,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653463?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653464?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t55","id":1210139,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653466?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653467?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t56","id":1210140,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653469?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653470?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t57","id":1210141,"location":"Figure + 12a,12d","messages":false,"name":"Exp limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653472?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653473?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t58","id":1210142,"location":"Figure + 12d","messages":false,"name":"Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653475?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653476?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v1/t59","id":1210143,"location":"Figure + 12b,12d","messages":false,"name":"Obs limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653478?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653479?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t60","id":1210144,"location":"Figure + 12d","messages":false,"name":"Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653481?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653482?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t61","id":1210145,"location":"Figure + 12d","messages":false,"name":"Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653484?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653485?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t62","id":1210146,"location":"Figure + 14c","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, mu>0","processed_name":"Explimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653487?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653488?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t63","id":1210147,"location":"Figure + 14c","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653490?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653491?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t64","id":1210148,"location":"Figure + 14c","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653493?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653494?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t65","id":1210149,"location":"Figure + 14c","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653496?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653497?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t66","id":1210150,"location":"Figure + 14c","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653499?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653500?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t67","id":1210151,"location":"Figure + 14c","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653502?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653503?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t68","id":1210152,"location":"Figure + 14d","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, mu>0","processed_name":"Explimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653505?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653506?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t69","id":1210153,"location":"Figure + 14d","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653508?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653509?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t70","id":1210154,"location":"Figure + 14d","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653511?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653512?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t71","id":1210155,"location":"Figure + 14d","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653514?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653515?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t72","id":1210156,"location":"Figure + 14d","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653517?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653518?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t73","id":1210157,"location":"Figure + 14b","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653520?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653521?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t74","id":1210158,"location":"Figure + 14a","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653523?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653524?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t75","id":1210159,"location":"Figure + 14a","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653526?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653527?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t76","id":1210160,"location":"Figure + 14b","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653529?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653530?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t77","id":1210161,"location":"Figure + 14a","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653532?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653533?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t78","id":1210162,"location":"Figure + 14a","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653535?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653536?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t79","id":1210163,"location":"Figure + 14b","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Explimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653538?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653539?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t80","id":1210164,"location":"Figure + 14a","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, M2 + vs mu","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653541?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653542?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t81","id":1210165,"location":"Figure + 14b","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653544?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653545?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t82","id":1210166,"location":"Figure + 14a","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653547?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653548?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t83","id":1210167,"location":"Figure + 14a","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653550?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653551?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid + red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, + as a function of the...","doi":"10.17182/hepdata.104458.v1/t84","id":1210168,"location":"Figure + 16","messages":false,"name":"Exp limit on (H~, G~)","processed_name":"Explimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653553?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653554?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t85","id":1210169,"location":"Figure + 16","messages":false,"name":"Exp limit (+1sig) on (H~, G~)","processed_name":"Explimit(+1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653556?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653557?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t86","id":1210170,"location":"Figure + 16","messages":false,"name":"Exp limit (-1sig) on (H~, G~)","processed_name":"Explimit(-1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653559?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653560?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid + red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, + as a function of the...","doi":"10.17182/hepdata.104458.v1/t87","id":1210171,"location":"Figure + 16","messages":false,"name":"Obs limit on (H~, G~)","processed_name":"Obslimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653562?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653563?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t88","id":1210172,"location":"Figure + 16","messages":false,"name":"Obs limit (+1sig) on (H~, G~)","processed_name":"Obslimit(+1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653565?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653566?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t89","id":1210173,"location":"Figure + 16","messages":false,"name":"Obs limit (-1sig) on (H~, G~)","processed_name":"Obslimit(-1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653568?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653569?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t90","id":1210174,"location":"Figure + 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653571?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653572?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t91","id":1210175,"location":"Figure + 17a","messages":false,"name":"Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653574?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653575?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t92","id":1210176,"location":"Figure + 17a","messages":false,"name":"Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653577?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653578?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t93","id":1210177,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653580?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653581?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t94","id":1210178,"location":"Figure + 17a","messages":false,"name":"Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653583?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653584?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t95","id":1210179,"location":"Figure + 17a","messages":false,"name":"Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653586?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653587?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t96","id":1210180,"location":"Figure + 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653589?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653590?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t97","id":1210181,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653592?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653593?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t98","id":1210182,"location":"Figure + 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653595?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653596?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t99","id":1210183,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653598?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653599?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t100","id":1210184,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 25%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=25%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653601?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653602?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t101","id":1210185,"location":"Figure + 4a auxiliary material","messages":false,"name":"B(C2->W+N1,N2) in (W~, H~), + tanb=10, mu>0","processed_name":"B(C2->W+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653604?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653605?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t102","id":1210186,"location":"Figure + 4c auxiliary material","messages":false,"name":"B(C2->Z+C1) in (W~, H~), tanb=10, + mu>0","processed_name":"B(C2->Z+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653607?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653608?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t103","id":1210187,"location":"Figure + 4e auxiliary material","messages":false,"name":"B(C2->h+C1) in (W~, H~), tanb=10, + mu>0","processed_name":"B(C2->h+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653610?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653611?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t104","id":1210188,"location":"Figure + 4b auxiliary material","messages":false,"name":"B(N3->W+C1) in (W~, H~), tanb=10, + mu>0","processed_name":"B(N3->W+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653613?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653614?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t105","id":1210189,"location":"Figure + 4d auxiliary material","messages":false,"name":"B(N3->Z+N1,N2) in (W~, H~), + tanb=10, mu>0","processed_name":"B(N3->Z+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653616?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653617?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t106","id":1210190,"location":"Figure + 4f auxiliary material","messages":false,"name":"B(N3->h+N1,N2) in (W~, H~), + tanb=10, mu>0","processed_name":"B(N3->h+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653619?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653620?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t107","id":1210191,"location":"Figure + 5a auxiliary material","messages":false,"name":"B(C2->W+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(C2->W+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653622?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653623?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t108","id":1210192,"location":"Figure + 5b auxiliary material","messages":false,"name":"B(C2->Z+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(C2->Z+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653625?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653626?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t109","id":1210193,"location":"Figure + 5c auxiliary material","messages":false,"name":"B(C2->h+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(C2->h+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653628?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653629?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t110","id":1210194,"location":"Figure + 5d auxiliary material","messages":false,"name":"B(N2->W+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N2->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653631?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653632?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t111","id":1210195,"location":"Figure + 5e auxiliary material","messages":false,"name":"B(N2->Z+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N2->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653634?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653635?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t112","id":1210196,"location":"Figure + 5f auxiliary material","messages":false,"name":"B(N2->h+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N2->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653637?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653638?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t113","id":1210197,"location":"Figure + 5g auxiliary material","messages":false,"name":"B(N3->W+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N3->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653640?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653641?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t114","id":1210198,"location":"Figure + 5h auxiliary material","messages":false,"name":"B(N3->Z+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N3->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653643?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653644?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t115","id":1210199,"location":"Figure + 5i auxiliary material","messages":false,"name":"B(N3->h+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N3->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653646?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653647?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1C1-WW). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v1/t116","id":1210200,"location":"Figure + 7a auxiliary material","messages":false,"name":"Expected cross-section upper + limit on C1C1-WW","processed_name":"Expectedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653649?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653650?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-WZ). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v1/t117","id":1210201,"location":"Figure + 7b auxiliary material","messages":false,"name":"Expected cross-section upper + limit on C1N2-WZ","processed_name":"Expectedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653652?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653653?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-Wh). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v1/t118","id":1210202,"location":"Figure + 7c auxiliary material","messages":false,"name":"Expected cross-section upper + limit on C1N2-Wh","processed_name":"Expectedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653655?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653656?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ + models. The black numbers represents the expected cross-section upper-limits.","doi":"10.17182/hepdata.104458.v1/t119","id":1210203,"location":"Figure + 7d auxiliary material","messages":false,"name":"Expected cross-section upper + limit on (H~, G~)","processed_name":"Expectedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653658?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653659?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1C1-WW). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v1/t120","id":1210204,"location":"Figure + 8a auxiliary material","messages":false,"name":"Observed cross-section upper + limit on C1C1-WW","processed_name":"Observedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653661?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653662?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-WZ). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v1/t121","id":1210205,"location":"Figure + 8b auxiliary material","messages":false,"name":"Observed cross-section upper + limit on C1N2-WZ","processed_name":"Observedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653664?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653665?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-Wh). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v1/t122","id":1210206,"location":"Figure + 8c auxiliary material","messages":false,"name":"Observed cross-section upper + limit on C1N2-Wh","processed_name":"Observedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653667?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653668?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ + models. The black numbers represents the observed cross-section upper-limits.","doi":"10.17182/hepdata.104458.v1/t123","id":1210207,"location":"Figure + 8d auxiliary material","messages":false,"name":"Observed cross-section upper + limit on (H~, G~)","processed_name":"Observedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653670?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653671?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + $(\\tilde{W},\\tilde{B})$ simplified models (C1C1-WW) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t124","id":1210208,"location":"Figure + 9a auxiliary material","messages":false,"name":"Acceptance of C1C1-WW signals + by SR-4Q-VV","processed_name":"AcceptanceofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653673?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653674?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t125","id":1210209,"location":"Figure + 9b auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals + by SR-4Q-VV","processed_name":"AcceptanceofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653676?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653677?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance + of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t126","id":1210210,"location":"Figure + 9c auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals + by SR-2B2Q-VZ","processed_name":"AcceptanceofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653679?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653680?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-Wh) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t127","id":1210211,"location":"Figure + 9d auxiliary material","messages":false,"name":"Acceptance of C1N2-Wh signals + by SR-2B2Q-Vh","processed_name":"AcceptanceofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653682?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653683?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t128","id":1210212,"location":"Figure + 10a auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals + by SR-4Q-VV","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653685?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653686?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance + of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t129","id":1210213,"location":"Figure + 10b auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals + by SR-2B2Q-VZ","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653688?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653689?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-Zh) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t130","id":1210214,"location":"Figure + 10c auxiliary material","messages":false,"name":"Acceptance of N2N3-Zh signals + by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653691?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653692?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-hh) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t131","id":1210215,"location":"Figure + 10d auxiliary material","messages":false,"name":"Acceptance of N2N3-hh signals + by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653694?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653695?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + the $(\\tilde{H},\\tilde{G})$ model by SR-4Q-VV, evaluated using MC simulation. + The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v1/t132","id":1210216,"location":"Figure + 11a auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals + by SR-4Q-VV","processed_name":"Acceptanceof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653697?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653698?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance + of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-VZ, evaluated using MC simulation. + The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v1/t133","id":1210217,"location":"Figure + 11b auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals + by SR-2B2Q-VZ","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653700?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653701?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-Vh, evaluated using MC simulation. + The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v1/t134","id":1210218,"location":"Figure + 11c auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals + by SR-2B2Q-Vh","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653703?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653704?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1C1-WW) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t135","id":1210219,"location":"Figure + 12a auxiliary material","messages":false,"name":"Efficiency of C1C1-WW signals + by SR-4Q-VV","processed_name":"EfficiencyofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653706?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653707?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t136","id":1210220,"location":"Figure + 12b auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals + by SR-4Q-VV","processed_name":"EfficiencyofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653709?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653710?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t137","id":1210221,"location":"Figure + 12c auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals + by SR-2B2Q-VZ","processed_name":"EfficiencyofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653712?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653713?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1N2-Wh) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t138","id":1210222,"location":"Figure + 12d auxiliary material","messages":false,"name":"Efficiency of C1N2-Wh signals + by SR-2B2Q-Vh","processed_name":"EfficiencyofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653715?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653716?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t139","id":1210223,"location":"Figure + 13a auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals + by SR-4Q-VV","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653718?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653719?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t140","id":1210224,"location":"Figure + 13b auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals + by SR-2B2Q-VZ","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653721?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653722?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-Zh) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t141","id":1210225,"location":"Figure + 13c auxiliary material","messages":false,"name":"Efficiency of N2N3-Zh signals + by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653724?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653725?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-hh) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t142","id":1210226,"location":"Figure + 13d auxiliary material","messages":false,"name":"Efficiency of N2N3-hh signals + by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653727?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653728?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ + in SR-4Q-VV. The efficiency in a given SR is defined by the ratio of weighted + events selected...","doi":"10.17182/hepdata.104458.v1/t143","id":1210227,"location":"Figure + 14a auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals + by SR-4Q-VV","processed_name":"Efficiencyof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653730?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653731?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ + in SR-2B2Q-VZ. The efficiency in a given SR is defined by the ratio of weighted + events selected...","doi":"10.17182/hepdata.104458.v1/t144","id":1210228,"location":"Figure + 14b auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals + by SR-2B2Q-VZ","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653733?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653734?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ + in SR-2B2Q-Vh. The efficiency in a given SR is defined by the ratio of weighted + events selected...","doi":"10.17182/hepdata.104458.v1/t145","id":1210229,"location":"Figure + 14c auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals + by SR-2B2Q-Vh","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/2653736?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/2653737?landing_page=true"}]}],"mode":"record","participant_count":3,"recid":104458,"record":{"abstract":"A + search for charginos and neutralinos at the Large Hadron Collider is reported + using fully hadronic final states and missing transverse momentum. Pair-produced + charginos or neutralinos are explored, each decaying into a high-$p_{\\text{T}}$ + Standard Model weak boson. Fully-hadronic final states are studied to exploit + the advantage of the large branching ratio, and the efficient background rejection + by identifying the high-$p_{\\text{T}}$ bosons using large-radius jets and + jet substructure information. An integrated luminosity of 139 fb$^{-1}$ of + proton-proton collision data collected by the ATLAS detector at a center-of-mass + energy of 13 TeV is used. No significant excess is found beyond the Standard + Model expectation. The 95% confidence level exclusion limits are set on wino + or higgsino production with varying assumptions in the decay branching ratios + and the type of the lightest supersymmetric particle. A wino (higgsino) mass + up to 1060 (900) GeV is excluded when the lightest SUSY particle mass is below + 400 (240) GeV and the mass splitting is larger than 400 (450) GeV. The sensitivity + to high-mass wino and higgsino is significantly extended compared with the + previous LHC searches using the other final states.","access_urls":{"links":{"csv":"https://www.hepdata.net/download/submission/ins1906174/3/csv","json":"https://www.hepdata.net/download/submission/ins1906174/3/json","root":"https://www.hepdata.net/download/submission/ins1906174/3/root","yaml":"https://www.hepdata.net/download/submission/ins1906174/3/yaml","yoda":"https://www.hepdata.net/download/submission/ins1906174/3/yoda"}},"analyses":[{"analysis":"https://www.hepdata.net/record/resource/3458718?landing_page=true","filename":"FullLikelihood_forHEPData.tar","type":"HistFactory"},{"analysis":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41","type":"SModelS"}],"arxiv_id":"arXiv:2108.07586","collaborations":["ATLAS"],"control_number":"104458","creation_date":"2021-08-17","data_abstract":"","doc_type":"publication","doi":"10.1103/PhysRevD.104.112010","first_author":{"affiliation":"Marseille, + CPPM","full_name":"Aad, Georges"},"hepdata_doi":"10.17182/hepdata.104458.v1","id":104458,"inspire_id":"1906174","journal_info":"Phys.Rev.D + 104 (2021) 112010","keywords":[{"schema":"INSPIRE","value":"p p: colliding + beams"},{"schema":"INSPIRE","value":"transverse momentum: missing-energy"},{"schema":"INSPIRE","value":"p + p: scattering"},{"schema":"INSPIRE","value":"final state: hadronic"},{"schema":"INSPIRE","value":"final + state: ((n)jet)"},{"schema":"INSPIRE","value":"neutralino: pair production"},{"schema":"INSPIRE","value":"chargino: + pair production"},{"schema":"INSPIRE","value":"sparticle: branching ratio"},{"schema":"INSPIRE","value":"CERN + LHC Coll"},{"schema":"INSPIRE","value":"ATLAS"},{"schema":"INSPIRE","value":"sparticle: + pair production"},{"schema":"INSPIRE","value":"new physics: search for"},{"schema":"INSPIRE","value":"sensitivity"},{"schema":"INSPIRE","value":"vector + boson: hadronic decay"},{"schema":"INSPIRE","value":"mass difference"},{"schema":"INSPIRE","value":"supersymmetry"},{"schema":"INSPIRE","value":"background"},{"schema":"INSPIRE","value":"structure"},{"schema":"INSPIRE","value":"track + data analysis: jet"},{"schema":"INSPIRE","value":"channel cross section: upper + limit"},{"schema":"INSPIRE","value":"chargino: mass: lower limit"},{"schema":"INSPIRE","value":"neutralino: + mass: lower limit"},{"schema":"INSPIRE","value":"Higgsino: mass"},{"schema":"INSPIRE","value":"experimental + results"},{"schema":"INSPIRE","value":"13000 GeV-cms"},{"schema":"PDG","value":"S046PHA"},{"schema":"PDG","value":"S046WNO"}],"last_updated":"Mon, + 06 Sep 2021 16:25:16 GMT","parent_child_join":{"name":"parent_publication"},"publication_date":"2021-11-01T00:00:00","recid":104458,"resources":[{"description":"Webpage + with all figures and tables","type":"html","url":"https://atlas.web.cern.ch/Atlas/GROUPS/PHYSICS/PAPERS/SUSY-2018-41/"},{"description":"Analysis + code at truth label using SimpleAnalysis framework without boson tagging efficiency + due to lack of jet substructure variables","type":"C++","url":"https://www.hepdata.net/record/resource/3458710?landing_page=true"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","type":"SUSY Les + Houches Accord","url":"https://www.hepdata.net/record/resource/3458711?landing_page=true"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","type":"SUSY Les + Houches Accord","url":"https://www.hepdata.net/record/resource/3458712?landing_page=true"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","type":"SUSY Les + Houches Accord","url":"https://www.hepdata.net/record/resource/3458713?landing_page=true"},{"description":"SHLA + file for GGM-Higgsino model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458714?landing_page=true"},{"description":"SHLA + file for N2N3-ZZ hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458715?landing_page=true"},{"description":"SHLA + file for N2N3-Zh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458716?landing_page=true"},{"description":"SHLA + file for N2N3-hh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458717?landing_page=true"},{"description":"HistFactory + likelihoods JSON files","type":"HistFactory","url":"https://www.hepdata.net/record/resource/3458718?landing_page=true"},{"description":null,"type":"SModelS","url":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41"}],"subject_area":["hep-ex"],"summary_authors":[{"affiliation":"Marseille, + CPPM","full_name":"Aad, Georges"},{"affiliation":"Oklahoma U.","full_name":"Abbott, + Braden Keim"},{"affiliation":"Massachusetts U., Amherst","full_name":"Abbott, + Dale"},{"affiliation":"CERN","full_name":"Abed Abud, Adam"},{"affiliation":"Gottingen + U., II. Phys. Inst.","full_name":"Abeling, Kira"},{"affiliation":"Royal Holloway, + U. of London","full_name":"Abhayasinghe, Deshan Kavishka"},{"affiliation":"Brookhaven","full_name":"Abidi, + Haider"},{"affiliation":"Tel Aviv U.","full_name":"Abramowicz, Halina"},{"affiliation":"Technion","full_name":"Abreu, + Henso"},{"affiliation":"Argonne","full_name":"Abulaiti, Yiming"}],"title":"Search + for charginos and neutralinos in final states with two boosted hadronically + decaying bosons and missing transverse momentum in $pp$ collisions at $\\sqrt{s}=13$ + TeV with the ATLAS detector","type":["article"],"uuid":"e06d0d13-c307-4ff4-a790-2e4295172b59","version":3,"year":"2021"},"record_type":"publication","related_recids":[],"related_to_this_recids":[],"resources_with_doi":[{"description":"Analysis + code at truth label using SimpleAnalysis framework without boson tagging efficiency + due to lack of jet substructure variables","doi":"10.17182/hepdata.104458.v1/r1","filename":"ANA-SUSY-2019-41.cxx"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","doi":"10.17182/hepdata.104458.v1/r2","filename":"susy_params_C1C1_WW_700_100.slha"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","doi":"10.17182/hepdata.104458.v1/r3","filename":"susy_params_C1N2_WZ_900_100.slha"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","doi":"10.17182/hepdata.104458.v1/r4","filename":"susy_params_C1N2_Wh_900_100.slha"},{"description":"SHLA + file for GGM-Higgsino model","doi":"10.17182/hepdata.104458.v1/r5","filename":"susy_params_GGMHino_C1N2N1_800.slha"},{"description":"SHLA + file for N2N3-ZZ hinoBino simplified model","doi":"10.17182/hepdata.104458.v1/r6","filename":"susy_params_N2N3_ZZ_800_100.slha"},{"description":"SHLA + file for N2N3-Zh hinoBino simplified model","doi":"10.17182/hepdata.104458.v1/r7","filename":"susy_params_N2N3_Zh_800_100.slha"},{"description":"SHLA + file for N2N3-hh hinoBino simplified model","doi":"10.17182/hepdata.104458.v1/r8","filename":"susy_params_N2N3_hh_800_100.slha"}],"reviewers_notified":false,"site_url":"https://www.hepdata.net","status":"finished","table_id_to_show":1210085,"table_name_to_show":"Table + of contents","version":1,"version_count":3,"watched":false} + + ' + headers: + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443";ma=60; + content-length: + - '198283' + content-type: + - application/json + date: + - Mon, 09 Dec 2024 10:22:58 GMT + permissions-policy: + - interest-cohort=() + referrer-policy: + - strict-origin-when-cross-origin + retry-after: + - '17' + server: + - gunicorn + set-cookie: + - session=a060f6e965fffe7d_6756c502.Ogilheb_Q-KPv6VyWCb2xl1CDts; Domain=.www.hepdata.net; + Expires=Mon, 09 Dec 2024 22:22:58 GMT; HttpOnly; Path=/; SameSite=Lax + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - sameorigin + x-proxy-backend: + - hepdata-prod_hepdata-web_http + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '55' + x-ratelimit-reset: + - '1733739796' + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: https://www.hepdata.net/record/ins1906174?format=json&version=2 + response: + body: + string: '{"access_count":{"sum":13373},"additional_resources":true,"breadcrumb_text":"Aad, + Georges et al.","coordinator":40,"data_tables":[{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/csv","json":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/json","root":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Table + of contents/yoda1"},"description":"- - - - - - - - Overview of HEPData Record + - - - - - - - -...","doi":"10.17182/hepdata.104458.v2/t1","id":1543719,"location":null,"messages":false,"name":"Table + of contents","processed_name":"Tableofcontents","resources":[]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/csv","json":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/json","root":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Cut + flows for the representative signals/yoda1"},"description":"Cut flows of some + representative signals up to SR-4Q-VV, SR-2B2Q-VZ, and SR-2B2Q-Vh. One signal + point from the $(\\tilde{W},~\\tilde{B})$ simplified models...","doi":"10.17182/hepdata.104458.v2/t2","id":1543720,"location":"Table + 1 auxiliary material","messages":false,"name":"Cut flows for the representative + signals","processed_name":"Cutflowsfortherepresentativesignals","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379370?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379371?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging efficiency/yoda1"},"description":"The boson-tagging efficiency + for jets arising from $W/Z$ bosons decaying into $q\\bar{q}$ (signal jets) + are shown. The signal jet efficiency...","doi":"10.17182/hepdata.104458.v2/t3","id":1543721,"location":"Figure + 4a","messages":false,"name":"$W/Z\\rightarrow qq$ tagging efficiency","processed_name":"$W/Z\\rightarrowqq$taggingefficiency","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379373?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379374?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow + qq$ tagging rejection/yoda1"},"description":"The rejection factor (inverse + of the efficiency) for jets that have the other origins (background jets) + are shown. The background...","doi":"10.17182/hepdata.104458.v2/t4","id":1543722,"location":"Figure + 4b","messages":false,"name":"$W/Z\\rightarrow qq$ tagging rejection","processed_name":"$W/Z\\rightarrowqq$taggingrejection","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379376?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379377?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging efficiency/yoda1"},"description":"The boson-tagging + efficiency for jets arising from $Z/h$ bosons decaying into $b\\bar{b}$ (signal + jets). The signal jet efficiency of $Z_{bb}$/$h_{bb}$-tagging...","doi":"10.17182/hepdata.104458.v2/t5","id":1543723,"location":"Figure + 4c","messages":false,"name":"$Z/h \\rightarrow bb$ tagging efficiency","processed_name":"$Z/h\\rightarrowbb$taggingefficiency","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379379?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379380?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h + %5Crightarrow bb$ tagging rejection/yoda1"},"description":"The rejection factor + (inverse of the efficiency) for jets that have the other origins (background + jets) are shown. The background...","doi":"10.17182/hepdata.104458.v2/t6","id":1543724,"location":"Figure + 4d","messages":false,"name":"$Z/h \\rightarrow bb$ tagging rejection","processed_name":"$Z/h\\rightarrowbb$taggingrejection","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379382?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379383?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal + jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v2/t7","id":1543725,"location":"Figure + 1a auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging + efficiency (vs official WP)","processed_name":"$W\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379385?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379386?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet + efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v2/t8","id":1543726,"location":"Figure + 1c auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging + rejection (vs official WP)","processed_name":"$W\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379388?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379389?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal + jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v2/t9","id":1543727,"location":"Figure + 1b auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging + efficiency (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379391?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379392?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow + qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet + efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging + working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v2/t10","id":1543728,"location":"Figure + 1d auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging + rejection (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379394?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379395?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/csv","json":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/json","root":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Total + systematic uncertainties/yoda1"},"description":"The total post-fit uncertainty + in each of the SRs and VRs.","doi":"10.17182/hepdata.104458.v2/t11","id":1543729,"location":"Figure + 9","messages":false,"name":"Total systematic uncertainties","processed_name":"Totalsystematicuncertainties","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379397?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379398?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/json","root":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background expectation in the SRs/yoda1"},"description":"Summary + of the observed data and predicted SM background in all SRs. The background + prediction in SR-4Q (SR-2B2Q) is obtained...","doi":"10.17182/hepdata.104458.v2/t12","id":1543730,"location":"Figure + 10","messages":false,"name":"Data yields and background expectation in the + SRs","processed_name":"DatayieldsandbackgroundexpectationintheSRs","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379400?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379401?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/json","root":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in SR/yoda1"},"description":"Number of observed + data events and the SM backgrounds in the SRs and the CR0L bins. The SM backgrounds + are...","doi":"10.17182/hepdata.104458.v2/t13","id":1543731,"location":"Table + 5","messages":false,"name":"Data yields and background breakdown in SR","processed_name":"DatayieldsandbackgroundbreakdowninSR","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379403?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379404?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/json","root":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data + yields and background breakdown in CR/VR 1L(1Y)/yoda1"},"description":"Number + of observed data events and the post-fit SM background prediction in the VR1L(1Y) + bins and the corresponding CR1L(1Y) bins....","doi":"10.17182/hepdata.104458.v2/t14","id":1543732,"location":"Table + 4","messages":false,"name":"Data yields and background breakdown in CR/VR + 1L(1Y)","processed_name":"DatayieldsandbackgroundbreakdowninCR/VR1L(1Y)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379406?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379407?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-4Q-VV/yoda1"},"description":"$m_{\\textrm{eff}}$ distribution + in SR-4Q-VV. The post-fit SM background expectation using the background-only + fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v2/t15","id":1543733,"location":"Figure + 11a","messages":false,"name":"Effective mass distribution in SR-4Q-VV","processed_name":"EffectivemassdistributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379409?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379410?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $m(J_{1})$ in SR-4Q-VV. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v2/t16","id":1543734,"location":"Figure + 2a auxiliary material","messages":false,"name":"Leading large-$R$ jet mass + distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379412?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379413?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $D_2(J_{1})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging + ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v2/t17","id":1543735,"location":"Figure + 2b auxiliary material","messages":false,"name":"Leading large-$R$ jet $D_{2}$ + distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379415?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379416?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $m(J_{2})$ in SR-4Q-VV. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v2/t18","id":1543736,"location":"Figure + 2c auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet + mass distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379418?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379419?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading + large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution + of $D_2(J_{2})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging + ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v2/t19","id":1543737,"location":"Figure + 2d auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet + $D_{2}$ distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379421?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379422?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-VZ/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions + in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only + fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v2/t20","id":1543738,"location":"Figure + 11b","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-VZ","processed_name":"$m_{T2}$distributioninSR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379424?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379425?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of + $m(J_{bb})$ in SR-2B2Q-VZ. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v2/t21","id":1543739,"location":"Figure + 3a auxiliary material","messages":false,"name":"bb-tagged jet mass distribution + in SR-2B2Q-VZ","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379427?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379428?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} + $ in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only + fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v2/t22","id":1543740,"location":"Figure + 3c auxiliary material","messages":false,"name":"Effective mass distribution + in SR-2B2Q-VZ","processed_name":"EffectivemassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379430?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379431?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ + distribution in SR-2B2Q-Vh/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions + in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only + fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v2/t23","id":1543741,"location":"Figure + 11c","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-Vh","processed_name":"$m_{T2}$distributioninSR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379433?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379434?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged + jet mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of + $m(J_{bb})$ in SR-2B2Q-Vh. The post-fit SM background expectation using the + background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v2/t24","id":1543742,"location":"Figure + 3b auxiliary material","messages":false,"name":"bb-tagged jet mass distribution + in SR-2B2Q-Vh","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379436?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379437?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective + mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} + $ in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only + fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v2/t25","id":1543743,"location":"Figure + 3d auxiliary material","messages":false,"name":"Effective mass distribution + in SR-2B2Q-Vh","processed_name":"EffectivemassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379439?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379440?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t26","id":1543744,"location":"Figure + 15a","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379442?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379443?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t27","id":1543745,"location":"Figure + 15a","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model + (C1C1-WW)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379445?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379446?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t28","id":1543746,"location":"Figure + 15a","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379448?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379449?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t29","id":1543747,"location":"Figure + 15a","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model + (C1C1-WW)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379451?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379452?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t30","id":1543748,"location":"Figure + 15a","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model + (C1C1-WW)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379454?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379455?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t31","id":1543749,"location":"Figure + 15b","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379457?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379458?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t32","id":1543750,"location":"Figure + 15b","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379461?landing_page=true"},{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379460?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t33","id":1543751,"location":"Figure + 15b","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379463?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379464?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t34","id":1543752,"location":"Figure + 15b","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379466?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379467?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t35","id":1543753,"location":"Figure + 15b","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379469?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379470?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t36","id":1543754,"location":"Figure + 15b","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model + (C1N2-WZ)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379472?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379473?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t37","id":1543755,"location":"Figure + 15c","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379475?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379476?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t38","id":1543756,"location":"Figure + 15c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379478?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379479?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t39","id":1543757,"location":"Figure + 15c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379481?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379482?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t40","id":1543758,"location":"Figure + 15c","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379484?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379485?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t41","id":1543759,"location":"Figure + 15c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379487?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379488?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion + limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the + produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) + and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t42","id":1543760,"location":"Figure + 15c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model + (C1N2-Wh)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379490?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379491?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t43","id":1543761,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379493?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379494?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t44","id":1543762,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379496?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379497?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t45","id":1543763,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379499?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379500?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t46","id":1543764,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379502?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379503?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t47","id":1543765,"location":"Figure + 12a,12c","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379505?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379506?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t48","id":1543766,"location":"Figure + 12c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379508?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379509?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t49","id":1543767,"location":"Figure + 12c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379511?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379512?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t50","id":1543768,"location":"Figure + 12b,12c","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379514?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379515?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t51","id":1543769,"location":"Figure + 12c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379517?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379518?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t52","id":1543770,"location":"Figure + 12c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379520?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379521?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t53","id":1543771,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379523?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379524?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t54","id":1543772,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379526?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379527?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t55","id":1543773,"location":"Figure + 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379529?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379530?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t56","id":1543774,"location":"Figure + 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379532?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379533?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t57","id":1543775,"location":"Figure + 12a,12d","messages":false,"name":"Exp limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379535?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379536?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t58","id":1543776,"location":"Figure + 12d","messages":false,"name":"Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379538?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379539?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits + for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown + as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) + and...","doi":"10.17182/hepdata.104458.v2/t59","id":1543777,"location":"Figure + 12b,12d","messages":false,"name":"Obs limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379541?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379542?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t60","id":1543778,"location":"Figure + 12d","messages":false,"name":"Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379544?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379545?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion + limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the + mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t61","id":1543779,"location":"Figure + 12d","messages":false,"name":"Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379547?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379548?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t62","id":1543780,"location":"Figure + 14c","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, mu>0","processed_name":"Explimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379550?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379551?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t63","id":1543781,"location":"Figure + 14c","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379553?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379554?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t64","id":1543782,"location":"Figure + 14c","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379556?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379557?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t65","id":1543783,"location":"Figure + 14c","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379559?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379560?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t66","id":1543784,"location":"Figure + 14c","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379562?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379563?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t67","id":1543785,"location":"Figure + 14c","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379565?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379566?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t68","id":1543786,"location":"Figure + 14d","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, mu>0","processed_name":"Explimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379568?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379569?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t69","id":1543787,"location":"Figure + 14d","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379571?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379572?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t70","id":1543788,"location":"Figure + 14d","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379574?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379575?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t71","id":1543789,"location":"Figure + 14d","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379577?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379578?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t72","id":1543790,"location":"Figure + 14d","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379580?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379581?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t73","id":1543791,"location":"Figure + 14b","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379583?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379584?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t74","id":1543792,"location":"Figure + 14a","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379586?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379587?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t75","id":1543793,"location":"Figure + 14a","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379589?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379590?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t76","id":1543794,"location":"Figure + 14b","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379592?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379593?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t77","id":1543795,"location":"Figure + 14a","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379595?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379596?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t78","id":1543796,"location":"Figure + 14a","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379598?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379599?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t79","id":1543797,"location":"Figure + 14b","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Explimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379601?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379602?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t80","id":1543798,"location":"Figure + 14a","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, M2 + vs mu","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379604?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379605?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected + on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t81","id":1543799,"location":"Figure + 14b","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379607?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379608?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t82","id":1543800,"location":"Figure + 14a","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379610?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379611?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% + CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are + projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t83","id":1543801,"location":"Figure + 14a","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, M2 + vs mu","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379613?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379614?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid + red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, + as a function of the...","doi":"10.17182/hepdata.104458.v2/t84","id":1543802,"location":"Figure + 16","messages":false,"name":"Exp limit on (H~, G~)","processed_name":"Explimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379616?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379617?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t85","id":1543803,"location":"Figure + 16","messages":false,"name":"Exp limit (+1sig) on (H~, G~)","processed_name":"Explimit(+1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379619?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379620?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t86","id":1543804,"location":"Figure + 16","messages":false,"name":"Exp limit (-1sig) on (H~, G~)","processed_name":"Explimit(-1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379622?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379623?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid + red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, + as a function of the...","doi":"10.17182/hepdata.104458.v2/t87","id":1543805,"location":"Figure + 16","messages":false,"name":"Obs limit on (H~, G~)","processed_name":"Obslimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379625?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379626?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t88","id":1543806,"location":"Figure + 16","messages":false,"name":"Obs limit (+1sig) on (H~, G~)","processed_name":"Obslimit(+1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379628?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379629?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed + (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ + model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t89","id":1543807,"location":"Figure + 16","messages":false,"name":"Obs limit (-1sig) on (H~, G~)","processed_name":"Obslimit(-1sig)on(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379631?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379632?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t90","id":1543808,"location":"Figure + 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379634?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379635?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t91","id":1543809,"location":"Figure + 17a","messages":false,"name":"Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379637?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379638?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t92","id":1543810,"location":"Figure + 17a","messages":false,"name":"Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379640?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379641?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t93","id":1543811,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379643?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379644?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t94","id":1543812,"location":"Figure + 17a","messages":false,"name":"Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379646?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379647?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL + exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of + axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t95","id":1543813,"location":"Figure + 17a","messages":false,"name":"Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379649?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379650?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t96","id":1543814,"location":"Figure + 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379652?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379653?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t97","id":1543815,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379655?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379656?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp + limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t98","id":1543816,"location":"Figure + 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379658?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379659?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t99","id":1543817,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379661?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379662?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs + limit on (H~, a~) B(N1->Za~) = 25%25/yoda1"},"description":"95% CL exclusion + limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass + ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t100","id":1543818,"location":"Figure + 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 25%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=25%","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379664?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379665?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t101","id":1543819,"location":"Figure + 4a auxiliary material","messages":false,"name":"B(C2->W+N1,N2) in (W~, H~), + tanb=10, mu>0","processed_name":"B(C2->W+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379668?landing_page=true"},{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379667?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t102","id":1543820,"location":"Figure + 4c auxiliary material","messages":false,"name":"B(C2->Z+C1) in (W~, H~), tanb=10, + mu>0","processed_name":"B(C2->Z+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379670?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379671?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t103","id":1543821,"location":"Figure + 4e auxiliary material","messages":false,"name":"B(C2->h+C1) in (W~, H~), tanb=10, + mu>0","processed_name":"B(C2->h+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379673?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379674?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t104","id":1543822,"location":"Figure + 4b auxiliary material","messages":false,"name":"B(N3->W+C1) in (W~, H~), tanb=10, + mu>0","processed_name":"B(N3->W+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379676?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379677?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t105","id":1543823,"location":"Figure + 4d auxiliary material","messages":false,"name":"B(N3->Z+N1,N2) in (W~, H~), + tanb=10, mu>0","processed_name":"B(N3->Z+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379679?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379680?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) + in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t106","id":1543824,"location":"Figure + 4f auxiliary material","messages":false,"name":"B(N3->h+N1,N2) in (W~, H~), + tanb=10, mu>0","processed_name":"B(N3->h+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379682?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379683?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t107","id":1543825,"location":"Figure + 5a auxiliary material","messages":false,"name":"B(C2->W+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(C2->W+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379685?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379686?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t108","id":1543826,"location":"Figure + 5b auxiliary material","messages":false,"name":"B(C2->Z+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(C2->Z+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379688?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379689?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t109","id":1543827,"location":"Figure + 5c auxiliary material","messages":false,"name":"B(C2->h+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(C2->h+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379691?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379692?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t110","id":1543828,"location":"Figure + 5d auxiliary material","messages":false,"name":"B(N2->W+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N2->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379694?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379695?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t111","id":1543829,"location":"Figure + 5e auxiliary material","messages":false,"name":"B(N2->Z+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N2->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379697?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379698?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t112","id":1543830,"location":"Figure + 5f auxiliary material","messages":false,"name":"B(N2->h+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N2->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379700?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379701?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t113","id":1543831,"location":"Figure + 5g auxiliary material","messages":false,"name":"B(N3->W+C1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N3->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379703?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379704?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t114","id":1543832,"location":"Figure + 5h auxiliary material","messages":false,"name":"B(N3->Z+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N3->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379706?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379707?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) + in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ + branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, + \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) + and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t115","id":1543833,"location":"Figure + 5i auxiliary material","messages":false,"name":"B(N3->h+N1) in (H~, W~), tanb=10, + mu>0","processed_name":"B(N3->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379709?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379710?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1C1-WW). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v2/t116","id":1543834,"location":"Figure + 7a auxiliary material","messages":false,"name":"Expected cross-section upper + limit on C1C1-WW","processed_name":"Expectedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379712?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379713?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-WZ). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v2/t117","id":1543835,"location":"Figure + 7b auxiliary material","messages":false,"name":"Expected cross-section upper + limit on C1N2-WZ","processed_name":"Expectedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379715?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379716?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-Wh). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v2/t118","id":1543836,"location":"Figure + 7c auxiliary material","messages":false,"name":"Expected cross-section upper + limit on C1N2-Wh","processed_name":"Expectedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379718?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379719?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected + cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ + models. The black numbers represents the expected cross-section upper-limits.","doi":"10.17182/hepdata.104458.v2/t119","id":1543837,"location":"Figure + 7d auxiliary material","messages":false,"name":"Expected cross-section upper + limit on (H~, G~)","processed_name":"Expectedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379721?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379722?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1C1-WW). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v2/t120","id":1543838,"location":"Figure + 8a auxiliary material","messages":false,"name":"Observed cross-section upper + limit on C1C1-WW","processed_name":"Observedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379724?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379725?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-WZ). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v2/t121","id":1543839,"location":"Figure + 8b auxiliary material","messages":false,"name":"Observed cross-section upper + limit on C1N2-WZ","processed_name":"Observedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379727?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379728?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM + model (C1N2-Wh). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v2/t122","id":1543840,"location":"Figure + 8c auxiliary material","messages":false,"name":"Observed cross-section upper + limit on C1N2-Wh","processed_name":"Observedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379730?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379731?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed + cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) + and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ + models. The black numbers represents the observed cross-section upper-limits.","doi":"10.17182/hepdata.104458.v2/t123","id":1543841,"location":"Figure + 8d auxiliary material","messages":false,"name":"Observed cross-section upper + limit on (H~, G~)","processed_name":"Observedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379733?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379734?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + $(\\tilde{W},\\tilde{B})$ simplified models (C1C1-WW) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t124","id":1543842,"location":"Figure + 9a auxiliary material","messages":false,"name":"Acceptance of C1C1-WW signals + by SR-4Q-VV","processed_name":"AcceptanceofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379736?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379737?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t125","id":1543843,"location":"Figure + 9b auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals + by SR-4Q-VV","processed_name":"AcceptanceofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379739?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379740?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance + of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t126","id":1543844,"location":"Figure + 9c auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals + by SR-2B2Q-VZ","processed_name":"AcceptanceofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379742?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379743?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-Wh) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t127","id":1543845,"location":"Figure + 9d auxiliary material","messages":false,"name":"Acceptance of C1N2-Wh signals + by SR-2B2Q-Vh","processed_name":"AcceptanceofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379745?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379746?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t128","id":1543846,"location":"Figure + 10a auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals + by SR-4Q-VV","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379748?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379749?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance + of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t129","id":1543847,"location":"Figure + 10b auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals + by SR-2B2Q-VZ","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379751?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379752?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-Zh) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t130","id":1543848,"location":"Figure + 10c auxiliary material","messages":false,"name":"Acceptance of N2N3-Zh signals + by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379754?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379755?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-hh) by their most relevant + SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t131","id":1543849,"location":"Figure + 10d auxiliary material","messages":false,"name":"Acceptance of N2N3-hh signals + by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379757?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379758?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of + the $(\\tilde{H},\\tilde{G})$ model by SR-4Q-VV, evaluated using MC simulation. + The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v2/t132","id":1543850,"location":"Figure + 11a auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals + by SR-4Q-VV","processed_name":"Acceptanceof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379760?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379761?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance + of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-VZ, evaluated using MC simulation. + The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v2/t133","id":1543851,"location":"Figure + 11b auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals + by SR-2B2Q-VZ","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379763?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379764?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance + of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance + of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-Vh, evaluated using MC simulation. + The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v2/t134","id":1543852,"location":"Figure + 11c auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals + by SR-2B2Q-Vh","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379766?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379767?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1C1-WW) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t135","id":1543853,"location":"Figure + 12a auxiliary material","messages":false,"name":"Efficiency of C1C1-WW signals + by SR-4Q-VV","processed_name":"EfficiencyofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379769?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379770?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t136","id":1543854,"location":"Figure + 12b auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals + by SR-4Q-VV","processed_name":"EfficiencyofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379772?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379773?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t137","id":1543855,"location":"Figure + 12c auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals + by SR-2B2Q-VZ","processed_name":"EfficiencyofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379775?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379776?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ + simplified models (C1N2-Wh) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t138","id":1543856,"location":"Figure + 12d auxiliary material","messages":false,"name":"Efficiency of C1N2-Wh signals + by SR-2B2Q-Vh","processed_name":"EfficiencyofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379778?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379779?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t139","id":1543857,"location":"Figure + 13a auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals + by SR-4Q-VV","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379781?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379782?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t140","id":1543858,"location":"Figure + 13b auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals + by SR-2B2Q-VZ","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379784?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379785?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-Zh) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t141","id":1543859,"location":"Figure + 13c auxiliary material","messages":false,"name":"Efficiency of N2N3-Zh signals + by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379787?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379788?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ + simplified models (N2N3-hh) in their most relevant SRs. The efficiency in + a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t142","id":1543860,"location":"Figure + 13d auxiliary material","messages":false,"name":"Efficiency of N2N3-hh signals + by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379790?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379791?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ + in SR-4Q-VV. The efficiency in a given SR is defined by the ratio of weighted + events selected...","doi":"10.17182/hepdata.104458.v2/t143","id":1543861,"location":"Figure + 14a auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals + by SR-4Q-VV","processed_name":"Efficiencyof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379793?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379794?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ + in SR-2B2Q-VZ. The efficiency in a given SR is defined by the ratio of weighted + events selected...","doi":"10.17182/hepdata.104458.v2/t144","id":1543862,"location":"Figure + 14b auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals + by SR-2B2Q-VZ","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379796?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379797?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency + of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ + in SR-2B2Q-Vh. The efficiency in a given SR is defined by the ratio of weighted + events selected...","doi":"10.17182/hepdata.104458.v2/t145","id":1543863,"location":"Figure + 14c auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals + by SR-2B2Q-Vh","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image + file","type":"png","url":"https://www.hepdata.net/record/resource/3379799?landing_page=true"},{"description":"Thumbnail + image file","type":"png","url":"https://www.hepdata.net/record/resource/3379800?landing_page=true"}]}],"mode":"record","participant_count":3,"recid":104458,"record":{"abstract":"A + search for charginos and neutralinos at the Large Hadron Collider is reported + using fully hadronic final states and missing transverse momentum. Pair-produced + charginos or neutralinos are explored, each decaying into a high-$p_{\\text{T}}$ + Standard Model weak boson. Fully-hadronic final states are studied to exploit + the advantage of the large branching ratio, and the efficient background rejection + by identifying the high-$p_{\\text{T}}$ bosons using large-radius jets and + jet substructure information. An integrated luminosity of 139 fb$^{-1}$ of + proton-proton collision data collected by the ATLAS detector at a center-of-mass + energy of 13 TeV is used. No significant excess is found beyond the Standard + Model expectation. The 95% confidence level exclusion limits are set on wino + or higgsino production with varying assumptions in the decay branching ratios + and the type of the lightest supersymmetric particle. A wino (higgsino) mass + up to 1060 (900) GeV is excluded when the lightest SUSY particle mass is below + 400 (240) GeV and the mass splitting is larger than 400 (450) GeV. The sensitivity + to high-mass wino and higgsino is significantly extended compared with the + previous LHC searches using the other final states.","access_urls":{"links":{"csv":"https://www.hepdata.net/download/submission/ins1906174/3/csv","json":"https://www.hepdata.net/download/submission/ins1906174/3/json","root":"https://www.hepdata.net/download/submission/ins1906174/3/root","yaml":"https://www.hepdata.net/download/submission/ins1906174/3/yaml","yoda":"https://www.hepdata.net/download/submission/ins1906174/3/yoda"}},"analyses":[{"analysis":"https://www.hepdata.net/record/resource/3458718?landing_page=true","filename":"FullLikelihood_forHEPData.tar","type":"HistFactory"},{"analysis":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41","type":"SModelS"}],"arxiv_id":"arXiv:2108.07586","collaborations":["ATLAS"],"control_number":"104458","creation_date":"2021-08-17","data_abstract":"","doc_type":"publication","doi":"10.1103/PhysRevD.104.112010","first_author":{"affiliation":"Marseille, + CPPM","full_name":"Aad, Georges"},"hepdata_doi":"10.17182/hepdata.104458.v2","id":104458,"inspire_id":"1906174","journal_info":"Phys.Rev.D + 104 (2021) 112010","keywords":[{"schema":"INSPIRE","value":"p p: colliding + beams"},{"schema":"INSPIRE","value":"transverse momentum: missing-energy"},{"schema":"INSPIRE","value":"p + p: scattering"},{"schema":"INSPIRE","value":"final state: hadronic"},{"schema":"INSPIRE","value":"final + state: ((n)jet)"},{"schema":"INSPIRE","value":"neutralino: pair production"},{"schema":"INSPIRE","value":"chargino: + pair production"},{"schema":"INSPIRE","value":"sparticle: branching ratio"},{"schema":"INSPIRE","value":"CERN + LHC Coll"},{"schema":"INSPIRE","value":"ATLAS"},{"schema":"INSPIRE","value":"sparticle: + pair production"},{"schema":"INSPIRE","value":"new physics: search for"},{"schema":"INSPIRE","value":"sensitivity"},{"schema":"INSPIRE","value":"vector + boson: hadronic decay"},{"schema":"INSPIRE","value":"mass difference"},{"schema":"INSPIRE","value":"supersymmetry"},{"schema":"INSPIRE","value":"background"},{"schema":"INSPIRE","value":"structure"},{"schema":"INSPIRE","value":"track + data analysis: jet"},{"schema":"INSPIRE","value":"channel cross section: upper + limit"},{"schema":"INSPIRE","value":"chargino: mass: lower limit"},{"schema":"INSPIRE","value":"neutralino: + mass: lower limit"},{"schema":"INSPIRE","value":"Higgsino: mass"},{"schema":"INSPIRE","value":"experimental + results"},{"schema":"INSPIRE","value":"13000 GeV-cms"},{"schema":"PDG","value":"S046PHA"},{"schema":"PDG","value":"S046WNO"}],"last_updated":"Thu, + 31 Aug 2023 13:32:42 GMT","parent_child_join":{"name":"parent_publication"},"publication_date":"2021-11-01T00:00:00","recid":104458,"resources":[{"description":"Webpage + with all figures and tables","type":"html","url":"https://atlas.web.cern.ch/Atlas/GROUPS/PHYSICS/PAPERS/SUSY-2018-41/"},{"description":"Analysis + code at truth label using SimpleAnalysis framework without boson tagging efficiency + due to lack of jet substructure variables","type":"C++","url":"https://www.hepdata.net/record/resource/3458710?landing_page=true"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","type":"SUSY Les + Houches Accord","url":"https://www.hepdata.net/record/resource/3458711?landing_page=true"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","type":"SUSY Les + Houches Accord","url":"https://www.hepdata.net/record/resource/3458712?landing_page=true"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","type":"SUSY Les + Houches Accord","url":"https://www.hepdata.net/record/resource/3458713?landing_page=true"},{"description":"SHLA + file for GGM-Higgsino model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458714?landing_page=true"},{"description":"SHLA + file for N2N3-ZZ hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458715?landing_page=true"},{"description":"SHLA + file for N2N3-Zh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458716?landing_page=true"},{"description":"SHLA + file for N2N3-hh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458717?landing_page=true"},{"description":"HistFactory + likelihoods JSON files","type":"HistFactory","url":"https://www.hepdata.net/record/resource/3458718?landing_page=true"},{"description":null,"type":"SModelS","url":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41"}],"subject_area":["hep-ex"],"summary_authors":[{"affiliation":"Marseille, + CPPM","full_name":"Aad, Georges"},{"affiliation":"Oklahoma U.","full_name":"Abbott, + Braden Keim"},{"affiliation":"Massachusetts U., Amherst","full_name":"Abbott, + Dale"},{"affiliation":"CERN","full_name":"Abed Abud, Adam"},{"affiliation":"Gottingen + U., II. Phys. Inst.","full_name":"Abeling, Kira"},{"affiliation":"Royal Holloway, + U. of London","full_name":"Abhayasinghe, Deshan Kavishka"},{"affiliation":"Brookhaven","full_name":"Abidi, + Haider"},{"affiliation":"Tel Aviv U.","full_name":"Abramowicz, Halina"},{"affiliation":"Technion","full_name":"Abreu, + Henso"},{"affiliation":"Argonne","full_name":"Abulaiti, Yiming"}],"title":"Search + for charginos and neutralinos in final states with two boosted hadronically + decaying bosons and missing transverse momentum in $pp$ collisions at $\\sqrt{s}=13$ + TeV with the ATLAS detector","type":["article"],"uuid":"e06d0d13-c307-4ff4-a790-2e4295172b59","version":3,"year":"2021"},"record_type":"publication","related_recids":[],"related_to_this_recids":[],"resources_with_doi":[{"description":"Analysis + code at truth label using SimpleAnalysis framework without boson tagging efficiency + due to lack of jet substructure variables","doi":"10.17182/hepdata.104458.v2/r1","filename":"ANA-SUSY-2018-41.cxx"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","doi":"10.17182/hepdata.104458.v2/r2","filename":"susy_params_C1C1_WW_700_100.slha"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","doi":"10.17182/hepdata.104458.v2/r3","filename":"susy_params_C1N2_WZ_900_100.slha"},{"description":"SHLA + file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","doi":"10.17182/hepdata.104458.v2/r4","filename":"susy_params_C1N2_Wh_900_100.slha"},{"description":"SHLA + file for GGM-Higgsino model","doi":"10.17182/hepdata.104458.v2/r5","filename":"susy_params_GGMHino_C1N2N1_800.slha"},{"description":"SHLA + file for N2N3-ZZ hinoBino simplified model","doi":"10.17182/hepdata.104458.v2/r6","filename":"susy_params_N2N3_ZZ_800_100.slha"},{"description":"SHLA + file for N2N3-Zh hinoBino simplified model","doi":"10.17182/hepdata.104458.v2/r7","filename":"susy_params_N2N3_Zh_800_100.slha"},{"description":"SHLA + file for N2N3-hh hinoBino simplified model","doi":"10.17182/hepdata.104458.v2/r8","filename":"susy_params_N2N3_hh_800_100.slha"},{"description":"HistFactory + likelihoods JSON files","doi":"10.17182/hepdata.104458.v2/r9","filename":"FullLikelihood_forHEPData.tar"}],"reviewers_notified":false,"revision_message":{"message":"Added + SimpleAnalysis code and likelihoods in the Additional Resources","version":2},"site_url":"https://www.hepdata.net","status":"finished","table_id_to_show":1543719,"table_name_to_show":"Table + of contents","version":2,"version_count":3,"watched":false} + + ' + headers: + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443";ma=60; + content-length: + - '198532' + content-type: + - application/json + date: + - Mon, 09 Dec 2024 10:23:04 GMT + permissions-policy: + - interest-cohort=() + referrer-policy: + - strict-origin-when-cross-origin + retry-after: + - '11' + server: + - gunicorn + set-cookie: + - session=de3fc0302f19dbb3_6756c508.p0V0mNEoeVLMrw4-4823DNpB5BU; Domain=.www.hepdata.net; + Expires=Mon, 09 Dec 2024 22:23:04 GMT; HttpOnly; Path=/; SameSite=Lax + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - sameorigin + x-proxy-backend: + - hepdata-prod_hepdata-web_http + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '54' + x-ratelimit-reset: + - '1733739796' + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/workflows/tests/cassettes/TestDataHarvest.test_load_record_post.yaml b/workflows/tests/cassettes/TestDataHarvest.test_load_record_post.yaml new file mode 100644 index 000000000..62584ffb7 --- /dev/null +++ b/workflows/tests/cassettes/TestDataHarvest.test_load_record_post.yaml @@ -0,0 +1,187 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/vnd+inspire.record.raw+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: http://host.docker.internal:8080/api/doi/10.1234567/test + response: + body: + string: '{"status": 404, "message": "PID does not exist."}' + headers: + Connection: + - keep-alive + Content-Length: + - '49' + Content-Type: + - application/json + Date: + - Wed, 11 Dec 2024 16:16:05 GMT + Server: + - nginx/1.19.1 + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: + Accept: + - application/vnd+inspire.record.raw+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: http://host.docker.internal:8080/api/doi/10.1234567/test + response: + body: + string: '{"status": 404, "message": "PID does not exist."}' + headers: + Connection: + - keep-alive + Content-Length: + - '49' + Content-Type: + - application/json + Date: + - Wed, 11 Dec 2024 16:16:06 GMT + Server: + - nginx/1.19.1 + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: + Accept: + - application/vnd+inspire.record.raw+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: http://host.docker.internal:8080/api/doi/10.1234567/test + response: + body: + string: '{"status": 404, "message": "PID does not exist."}' + headers: + Connection: + - keep-alive + Content-Length: + - '49' + Content-Type: + - application/json + Date: + - Wed, 11 Dec 2024 16:16:08 GMT + Server: + - nginx/1.19.1 + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: + Accept: + - application/vnd+inspire.record.raw+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: http://host.docker.internal:8080/api/doi/10.1234567/test + response: + body: + string: '{"status": 404, "message": "PID does not exist."}' + headers: + Connection: + - keep-alive + Content-Length: + - '49' + Content-Type: + - application/json + Date: + - Wed, 11 Dec 2024 16:16:12 GMT + Server: + - nginx/1.19.1 + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: + Accept: + - application/vnd+inspire.record.raw+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: http://host.docker.internal:8080/api/doi/10.1234567/test + response: + body: + string: '{"status": 404, "message": "PID does not exist."}' + headers: + Connection: + - keep-alive + Content-Length: + - '49' + Content-Type: + - application/json + Date: + - Wed, 11 Dec 2024 16:16:20 GMT + Server: + - nginx/1.19.1 + status: + code: 404 + message: NOT FOUND +- request: + body: '{"_collections": ["Data"], "$schema": "https://inspirehep.net/schemas/records/data.json", + "dois": [{"value": "10.1234567/test", "material": "data"}]}' + headers: + Accept: + - application/vnd+inspire.record.raw+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '149' + Content-Type: + - application/json + method: POST + uri: http://host.docker.internal:8080/api/data + response: + body: + string: '{"metadata":{"_collections":["Data"],"$schema":"https://inspirehep.net/schemas/records/data.json","dois":[{"value":"10.1234567/test","material":"data"}],"control_number":2610637,"self":{"$ref":"http://localhost:8000/api/data/2610637"}},"revision_id":0,"updated":"2024-12-11T16:16:20.351311+00:00","uuid":"b765f128-72f8-4120-ac43-9242ad2c40a6","created":"2024-12-11T16:16:20.351308+00:00","id":"{2610637}","links":{"json":"http://localhost:8000/api/data/%7B2610637%7D?format=json"}}' + headers: + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '481' + Content-Type: + - application/vnd+inspire.record.raw+json + Date: + - Wed, 11 Dec 2024 16:16:20 GMT + ETag: + - W/"0" + Last-Modified: + - Wed, 11 Dec 2024 16:16:20 GMT + Link: + - ; rel="http://localhost:8000/api/data/%7B2610637%7D?format=json" + Server: + - nginx/1.19.1 + Vary: + - Accept,Accept-Encoding,Accept-Language + location: + - http://localhost:8000/api/data/%7B2610637%7D + status: + code: 201 + message: CREATED +version: 1 diff --git a/workflows/tests/cassettes/TestDataHarvest.test_load_record_put.yaml b/workflows/tests/cassettes/TestDataHarvest.test_load_record_put.yaml new file mode 100644 index 000000000..c48bd28e4 --- /dev/null +++ b/workflows/tests/cassettes/TestDataHarvest.test_load_record_put.yaml @@ -0,0 +1,202 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/vnd+inspire.record.raw+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + method: GET + uri: http://host.docker.internal:8080/api/doi/10.8756/tTM + response: + body: + string: '{"metadata":{"dois":[{"value":"10.8756/tTM","material":"data"}],"self":{"$ref":"http://localhost:8000/api/data/777"},"urls":[{"value":"http://HoXZ","description":"tempor + laboris nostrud amet dolor"},{"value":"http://CBBgCi","description":"irure"},{"value":"https://aE,","description":"reprehenderit + lab"},{"value":"http://Erus/87","description":"magna"},{"value":"https://lHCOlUYMP","description":"laborum + eiusmod nulla ad ea"}],"titles":[{"title":"Test title","source":"pariatur + adipisicing amet","subtitle":"voluptate eiusmod fugiat"},{"title":"sunt sit","source":"commodo","subtitle":"ea + Duis irure"},{"title":"mollit pariatur","source":"u","subtitle":"labore ut + culpa irure"},{"title":"Duis sit Lorem elit","source":"sint","subtitle":"dolor + ipsum culpa enim occaecat"}],"$schema":"https://inspirehep.net/schemas/records/data.json","_bucket":"Ut + aliquip","authors":[{"ids":[{"value":"Excepteur velit est","schema":"TWITTER"}],"uuid":"3ac00867-2732-5adf-bfa8-f7a4b20fb67a","emails":["hNHD4FI-0sDqF@jTtNYclz.py","mrCdhdyNoH@IrcKFCnJgyrMqAGa.lq","ZRyS-Nsg9d@fKgRavdVQTPZW.toax","0BO@wRZPbtVZClYSvbSocKkXENciixqKRX.vob","v4w2it@zwrIt.pih"],"record":{"$ref":"http://zFGgrQUmKkz/api/authors/123445"},"full_name":"Pc`a:,z;(]ImH,9]QmwXXY4","affiliations":[{"value":"ut","record":{"$ref":"http://M1/api/institutions/12346"},"curated_relation":true},{"value":"eu + velit","record":{"$ref":"http://i2ex9/api/institutions/634564"},"curated_relation":false},{"value":"D","record":{"$ref":"http://m9aE2NXYZ/api/institutions/45636"},"curated_relation":false},{"value":"Excepteur + culpa occaecat minim","record":{"$ref":"http://PGSz4/api/institutions/52345"},"curated_relation":true}],"credit_roles":["Visualization","Project + administration","Supervision","Investigation","Writing - review & editing"],"inspire_roles":["author"],"signature_block":"ut + ut","curated_relation":true,"raw_affiliations":[{"value":"voluptate aliquip","source":"ex + do officia"},{"value":"eu dolor","source":"ipsum ut"}],"alternative_names":["aliqua + aliquip dolor","est ","fugiat"],"affiliations_identifiers":[{"value":"grid.5.OSKbNeeu","schema":"GRID"},{"value":"grid.952242.bCL1tagP4I","schema":"GRID"}]},{"ids":[{"value":"n","schema":"TWITTER"},{"value":"Excepteur","schema":"TWITTER"}],"uuid":"932e15c2-b312-c684-e1fa-ea985235e7f1","emails":["oMVbenTBkDkqPa@mJEfvPmtBqVpMGv.xw","eFxHV1W1bp@HVo.bwhg","Mu-4Psc7NkV@YHjfMXCEBqHu.eknq"],"record":{"$ref":"http://K5X/api/authors/12345"},"full_name":"L,mo7fv}\\0V]?","affiliations":[{"value":"nisi + consequat","record":{"$ref":"http://lRC-uM/api/institutions/1234"},"curated_relation":true}],"credit_roles":["Validation","Writing + - original draft","Conceptualization","Data curation","Investigation"],"inspire_roles":["editor","supervisor","author"],"signature_block":"fugiat","curated_relation":false,"raw_affiliations":[{"value":"non + anim","source":"ad quis ut"},{"value":"dolore sint ex","source":"in Excepteur + esse"}],"alternative_names":["proident","Excepteur adipisicing ut consectetur","do"],"affiliations_identifiers":[{"value":"grid.13647.lvvFkuvEV","schema":"GRID"},{"value":"grid.11978285837.5ysI4o6","schema":"GRID"},{"value":"grid.8512.9Nh","schema":"GRID"},{"value":"grid.5803.ycJExkHX2yC","schema":"GRID"}]}],"deleted":false,"texkeys":["nostrud + non officia","velit dolore","velit nostrud exercitation quis ullamco"],"keywords":[{"value":"quis","source":"ea + laboris"},{"value":"aliquip ut ut ullamco ex","source":"aliqua cillum"},{"value":"labore","source":"aliquip"}],"abstracts":[{"value":"est + occaecat dolor in","source":"ut velit laboris"},{"value":"ad voluptat","source":"ea"},{"value":"anim + id sunt","source":"ut"},{"value":"mollit","source":"dolor eu et pariatur"}],"literature":[{"doi":{"value":"10.912/W/K[Bz","source":"amet + Ut"},"record":{"$ref":"http://XVxZ15mkm/api/literature/44707"}},{"record":{"$ref":"http://l/api/literature/873915"}}],"_collections":["Data"],"creation_date":"2005-05-03","collaborations":[{"value":"ex + occaecat sunt eu","record":{"$ref":"http://XcyD6G/api/experiments/1234456"}},{"value":"ut + eiusmod anim aute in","record":{"$ref":"http://lWwb6D/api/experiments/547678"}}],"control_number":777,"legacy_version":"ea","deleted_records":[{"$ref":"http://J3vLBvgzhC/api/data/546456"},{"$ref":"http://txGvpx7fpfb/api/data/34534567"}],"acquisition_source":{"email":"xnSAdJWSg358dN@gQEsvHyr.ga","orcid":"7331-1113-6863-4887","method":"oai","source":"dolore + mollit","datetime":"5096-09-22T20:00:59.888Z","internal_uid":-19966101,"submission_number":"n"},"accelerator_experiments":[{"record":{"$ref":"http://Wba/api/experiments/12234"},"experiment":"exercitation + officia sint","accelerator":"ipsum ess","institution":"veniam","legacy_name":"reprehenderit + incididunt eiusmod exercitation","curated_relation":true}]},"revision_id":7,"updated":"2024-12-11T14:56:27.449027+00:00","uuid":"e5430afb-8761-4eaf-9188-e9d3a7bd4207","created":"2024-12-11T14:02:11.066149+00:00","id":"10.8756/ttm","links":{"bibtex":"http://localhost:8000/api/doi/10.8756/ttm?format=bibtex","latex-eu":"http://localhost:8000/api/doi/10.8756/ttm?format=latex-eu","latex-us":"http://localhost:8000/api/doi/10.8756/ttm?format=latex-us","json":"http://localhost:8000/api/doi/10.8756/ttm?format=json","cv":"http://localhost:8000/api/doi/10.8756/ttm?format=cv"}}' + headers: + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '5272' + Content-Type: + - application/vnd+inspire.record.raw+json + Date: + - Wed, 11 Dec 2024 16:15:43 GMT + ETag: + - W/"7" + Last-Modified: + - Wed, 11 Dec 2024 14:56:27 GMT + Link: + - ; rel="http://localhost:8000/api/doi/10.8756/ttm?format=bibtex", ; + rel="http://localhost:8000/api/doi/10.8756/ttm?format=latex-eu", ; + rel="http://localhost:8000/api/doi/10.8756/ttm?format=latex-us", ; rel="http://localhost:8000/api/doi/10.8756/ttm?format=json", + ; rel="http://localhost:8000/api/doi/10.8756/ttm?format=cv" + Server: + - nginx/1.19.1 + Vary: + - Accept,Accept-Encoding,Accept-Language + status: + code: 200 + message: OK +- request: + body: '{"dois": [{"value": "10.8756/tTM", "material": "data"}], "self": {"$ref": + "http://localhost:8000/api/data/777"}, "urls": [{"value": "http://HoXZ", "description": + "tempor laboris nostrud amet dolor"}, {"value": "http://CBBgCi", "description": + "irure"}, {"value": "https://aE,", "description": "reprehenderit lab"}, {"value": + "http://Erus/87", "description": "magna"}, {"value": "https://lHCOlUYMP", "description": + "laborum eiusmod nulla ad ea"}], "titles": [{"title": "Test title", "source": + "pariatur adipisicing amet", "subtitle": "voluptate eiusmod fugiat"}, {"title": + "sunt sit", "source": "commodo", "subtitle": "ea Duis irure"}, {"title": "mollit + pariatur", "source": "u", "subtitle": "labore ut culpa irure"}, {"title": "Duis + sit Lorem elit", "source": "sint", "subtitle": "dolor ipsum culpa enim occaecat"}], + "$schema": "https://inspirehep.net/schemas/records/data.json", "_bucket": "Ut + aliquip", "authors": [{"ids": [{"value": "Excepteur velit est", "schema": "TWITTER"}], + "uuid": "3ac00867-2732-5adf-bfa8-f7a4b20fb67a", "emails": ["hNHD4FI-0sDqF@jTtNYclz.py", + "mrCdhdyNoH@IrcKFCnJgyrMqAGa.lq", "ZRyS-Nsg9d@fKgRavdVQTPZW.toax", "0BO@wRZPbtVZClYSvbSocKkXENciixqKRX.vob", + "v4w2it@zwrIt.pih"], "record": {"$ref": "http://zFGgrQUmKkz/api/authors/123445"}, + "full_name": "Pc`a:,z;(]ImH,9]QmwXXY4", "affiliations": [{"value": "ut", "record": + {"$ref": "http://M1/api/institutions/12346"}, "curated_relation": true}, {"value": + "eu velit", "record": {"$ref": "http://i2ex9/api/institutions/634564"}, "curated_relation": + false}, {"value": "D", "record": {"$ref": "http://m9aE2NXYZ/api/institutions/45636"}, + "curated_relation": false}, {"value": "Excepteur culpa occaecat minim", "record": + {"$ref": "http://PGSz4/api/institutions/52345"}, "curated_relation": true}], + "credit_roles": ["Visualization", "Project administration", "Supervision", "Investigation", + "Writing - review & editing"], "inspire_roles": ["author"], "signature_block": + "ut ut", "curated_relation": true, "raw_affiliations": [{"value": "voluptate + aliquip", "source": "ex do officia"}, {"value": "eu dolor", "source": "ipsum + ut"}], "alternative_names": ["aliqua aliquip dolor", "est ", "fugiat"], "affiliations_identifiers": + [{"value": "grid.5.OSKbNeeu", "schema": "GRID"}, {"value": "grid.952242.bCL1tagP4I", + "schema": "GRID"}]}, {"ids": [{"value": "n", "schema": "TWITTER"}, {"value": + "Excepteur", "schema": "TWITTER"}], "uuid": "932e15c2-b312-c684-e1fa-ea985235e7f1", + "emails": ["oMVbenTBkDkqPa@mJEfvPmtBqVpMGv.xw", "eFxHV1W1bp@HVo.bwhg", "Mu-4Psc7NkV@YHjfMXCEBqHu.eknq"], + "record": {"$ref": "http://K5X/api/authors/12345"}, "full_name": "L,mo7fv}\\0V]?", + "affiliations": [{"value": "nisi consequat", "record": {"$ref": "http://lRC-uM/api/institutions/1234"}, + "curated_relation": true}], "credit_roles": ["Validation", "Writing - original + draft", "Conceptualization", "Data curation", "Investigation"], "inspire_roles": + ["editor", "supervisor", "author"], "signature_block": "fugiat", "curated_relation": + false, "raw_affiliations": [{"value": "non anim", "source": "ad quis ut"}, {"value": + "dolore sint ex", "source": "in Excepteur esse"}], "alternative_names": ["proident", + "Excepteur adipisicing ut consectetur", "do"], "affiliations_identifiers": [{"value": + "grid.13647.lvvFkuvEV", "schema": "GRID"}, {"value": "grid.11978285837.5ysI4o6", + "schema": "GRID"}, {"value": "grid.8512.9Nh", "schema": "GRID"}, {"value": "grid.5803.ycJExkHX2yC", + "schema": "GRID"}]}], "deleted": false, "texkeys": ["nostrud non officia", "velit + dolore", "velit nostrud exercitation quis ullamco"], "keywords": [{"value": + "quis", "source": "ea laboris"}, {"value": "aliquip ut ut ullamco ex", "source": + "aliqua cillum"}, {"value": "labore", "source": "aliquip"}], "abstracts": [{"value": + "est occaecat dolor in", "source": "ut velit laboris"}, {"value": "ad voluptat", + "source": "ea"}, {"value": "anim id sunt", "source": "ut"}, {"value": "mollit", + "source": "dolor eu et pariatur"}], "literature": [{"doi": {"value": "10.912/W/K[Bz", + "source": "amet Ut"}, "record": {"$ref": "http://XVxZ15mkm/api/literature/44707"}}, + {"record": {"$ref": "http://l/api/literature/873915"}}], "_collections": ["Data"], + "creation_date": "2005-05-03", "collaborations": [{"value": "ex occaecat sunt + eu", "record": {"$ref": "http://XcyD6G/api/experiments/1234456"}}, {"value": + "ut eiusmod anim aute in", "record": {"$ref": "http://lWwb6D/api/experiments/547678"}}], + "control_number": 777, "legacy_version": "ea", "deleted_records": [{"$ref": + "http://J3vLBvgzhC/api/data/546456"}, {"$ref": "http://txGvpx7fpfb/api/data/34534567"}], + "acquisition_source": {"email": "xnSAdJWSg358dN@gQEsvHyr.ga", "orcid": "7331-1113-6863-4887", + "method": "oai", "source": "dolore mollit", "datetime": "5096-09-22T20:00:59.888Z", + "internal_uid": -19966101, "submission_number": "n"}, "accelerator_experiments": + [{"record": {"$ref": "http://Wba/api/experiments/12234"}, "experiment": "exercitation + officia sint", "accelerator": "ipsum ess", "institution": "veniam", "legacy_name": + "reprehenderit incididunt eiusmod exercitation", "curated_relation": true}]}' + headers: + Accept: + - application/vnd+inspire.record.raw+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '5059' + Content-Type: + - application/json + If-Match: + - '"7"' + method: PUT + uri: http://host.docker.internal:8080/api/data/777 + response: + body: + string: '{"metadata":{"dois":[{"value":"10.8756/tTM","material":"data"}],"self":{"$ref":"http://localhost:8000/api/data/777"},"urls":[{"value":"http://HoXZ","description":"tempor + laboris nostrud amet dolor"},{"value":"http://CBBgCi","description":"irure"},{"value":"https://aE,","description":"reprehenderit + lab"},{"value":"http://Erus/87","description":"magna"},{"value":"https://lHCOlUYMP","description":"laborum + eiusmod nulla ad ea"}],"titles":[{"title":"Test title","source":"pariatur + adipisicing amet","subtitle":"voluptate eiusmod fugiat"},{"title":"sunt sit","source":"commodo","subtitle":"ea + Duis irure"},{"title":"mollit pariatur","source":"u","subtitle":"labore ut + culpa irure"},{"title":"Duis sit Lorem elit","source":"sint","subtitle":"dolor + ipsum culpa enim occaecat"}],"$schema":"https://inspirehep.net/schemas/records/data.json","_bucket":"Ut + aliquip","authors":[{"ids":[{"value":"Excepteur velit est","schema":"TWITTER"}],"uuid":"3ac00867-2732-5adf-bfa8-f7a4b20fb67a","emails":["hNHD4FI-0sDqF@jTtNYclz.py","mrCdhdyNoH@IrcKFCnJgyrMqAGa.lq","ZRyS-Nsg9d@fKgRavdVQTPZW.toax","0BO@wRZPbtVZClYSvbSocKkXENciixqKRX.vob","v4w2it@zwrIt.pih"],"record":{"$ref":"http://zFGgrQUmKkz/api/authors/123445"},"full_name":"Pc`a:,z;(]ImH,9]QmwXXY4","affiliations":[{"value":"ut","record":{"$ref":"http://M1/api/institutions/12346"},"curated_relation":true},{"value":"eu + velit","record":{"$ref":"http://i2ex9/api/institutions/634564"},"curated_relation":false},{"value":"D","record":{"$ref":"http://m9aE2NXYZ/api/institutions/45636"},"curated_relation":false},{"value":"Excepteur + culpa occaecat minim","record":{"$ref":"http://PGSz4/api/institutions/52345"},"curated_relation":true}],"credit_roles":["Visualization","Project + administration","Supervision","Investigation","Writing - review & editing"],"inspire_roles":["author"],"signature_block":"ut + ut","curated_relation":true,"raw_affiliations":[{"value":"voluptate aliquip","source":"ex + do officia"},{"value":"eu dolor","source":"ipsum ut"}],"alternative_names":["aliqua + aliquip dolor","est ","fugiat"],"affiliations_identifiers":[{"value":"grid.5.OSKbNeeu","schema":"GRID"},{"value":"grid.952242.bCL1tagP4I","schema":"GRID"}]},{"ids":[{"value":"n","schema":"TWITTER"},{"value":"Excepteur","schema":"TWITTER"}],"uuid":"932e15c2-b312-c684-e1fa-ea985235e7f1","emails":["oMVbenTBkDkqPa@mJEfvPmtBqVpMGv.xw","eFxHV1W1bp@HVo.bwhg","Mu-4Psc7NkV@YHjfMXCEBqHu.eknq"],"record":{"$ref":"http://K5X/api/authors/12345"},"full_name":"L,mo7fv}\\0V]?","affiliations":[{"value":"nisi + consequat","record":{"$ref":"http://lRC-uM/api/institutions/1234"},"curated_relation":true}],"credit_roles":["Validation","Writing + - original draft","Conceptualization","Data curation","Investigation"],"inspire_roles":["editor","supervisor","author"],"signature_block":"fugiat","curated_relation":false,"raw_affiliations":[{"value":"non + anim","source":"ad quis ut"},{"value":"dolore sint ex","source":"in Excepteur + esse"}],"alternative_names":["proident","Excepteur adipisicing ut consectetur","do"],"affiliations_identifiers":[{"value":"grid.13647.lvvFkuvEV","schema":"GRID"},{"value":"grid.11978285837.5ysI4o6","schema":"GRID"},{"value":"grid.8512.9Nh","schema":"GRID"},{"value":"grid.5803.ycJExkHX2yC","schema":"GRID"}]}],"deleted":false,"texkeys":["nostrud + non officia","velit dolore","velit nostrud exercitation quis ullamco"],"keywords":[{"value":"quis","source":"ea + laboris"},{"value":"aliquip ut ut ullamco ex","source":"aliqua cillum"},{"value":"labore","source":"aliquip"}],"abstracts":[{"value":"est + occaecat dolor in","source":"ut velit laboris"},{"value":"ad voluptat","source":"ea"},{"value":"anim + id sunt","source":"ut"},{"value":"mollit","source":"dolor eu et pariatur"}],"literature":[{"doi":{"value":"10.912/W/K[Bz","source":"amet + Ut"},"record":{"$ref":"http://XVxZ15mkm/api/literature/44707"}},{"record":{"$ref":"http://l/api/literature/873915"}}],"_collections":["Data"],"creation_date":"2005-05-03","collaborations":[{"value":"ex + occaecat sunt eu","record":{"$ref":"http://XcyD6G/api/experiments/1234456"}},{"value":"ut + eiusmod anim aute in","record":{"$ref":"http://lWwb6D/api/experiments/547678"}}],"control_number":777,"legacy_version":"ea","deleted_records":[{"$ref":"http://J3vLBvgzhC/api/data/546456"},{"$ref":"http://txGvpx7fpfb/api/data/34534567"}],"acquisition_source":{"email":"xnSAdJWSg358dN@gQEsvHyr.ga","orcid":"7331-1113-6863-4887","method":"oai","source":"dolore + mollit","datetime":"5096-09-22T20:00:59.888Z","internal_uid":-19966101,"submission_number":"n"},"accelerator_experiments":[{"record":{"$ref":"http://Wba/api/experiments/12234"},"experiment":"exercitation + officia sint","accelerator":"ipsum ess","institution":"veniam","legacy_name":"reprehenderit + incididunt eiusmod exercitation","curated_relation":true}]},"revision_id":8,"updated":"2024-12-11T16:15:43.855471+00:00","uuid":"e5430afb-8761-4eaf-9188-e9d3a7bd4207","created":"2024-12-11T14:02:11.066149+00:00","id":"777","links":{"json":"http://localhost:8000/api/data/777?format=json"}}' + headers: + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Length: + - '4989' + Content-Type: + - application/vnd+inspire.record.raw+json + Date: + - Wed, 11 Dec 2024 16:15:43 GMT + ETag: + - W/"8" + Last-Modified: + - Wed, 11 Dec 2024 16:15:43 GMT + Link: + - ; rel="http://localhost:8000/api/data/777?format=json" + Server: + - nginx/1.19.1 + Vary: + - Accept,Accept-Encoding,Accept-Language + status: + code: 200 + message: OK +version: 1 diff --git a/workflows/tests/data_records/ins1906174_version1.json b/workflows/tests/data_records/ins1906174_version1.json new file mode 100644 index 000000000..60a8a77e6 --- /dev/null +++ b/workflows/tests/data_records/ins1906174_version1.json @@ -0,0 +1 @@ +{"access_count":{"sum":13384},"additional_resources":true,"breadcrumb_text":"Aad, Georges et al.","coordinator":40,"data_tables":[{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Table of contents/csv","json":"https://www.hepdata.net/download/table/ins1906174/Table of contents/json","root":"https://www.hepdata.net/download/table/ins1906174/Table of contents/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Table of contents/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Table of contents/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Table of contents/yoda1"},"description":"- - - - - - - - Overview of HEPData Record - - - - - - - -...","doi":"10.17182/hepdata.104458.v1/t1","id":1210085,"location":null,"messages":false,"name":"Table of contents","processed_name":"Tableofcontents","resources":[]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/csv","json":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/json","root":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/yoda1"},"description":"Cut flows of some representative signals up to SR-4Q-VV, SR-2B2Q-VZ, and SR-2B2Q-Vh. One signal point from the $(\\tilde{W},~\\tilde{B})$ simplified models...","doi":"10.17182/hepdata.104458.v1/t2","id":1210086,"location":"Table 1 auxiliary material","messages":false,"name":"Cut flows for the representative signals","processed_name":"Cutflowsfortherepresentativesignals","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653307?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653308?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/yoda1"},"description":"The boson-tagging efficiency for jets arising from $W/Z$ bosons decaying into $q\\bar{q}$ (signal jets) are shown. The signal jet efficiency...","doi":"10.17182/hepdata.104458.v1/t3","id":1210087,"location":"Figure 4a","messages":false,"name":"$W/Z\\rightarrow qq$ tagging efficiency","processed_name":"$W/Z\\rightarrowqq$taggingefficiency","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653310?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653311?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/yoda1"},"description":"The rejection factor (inverse of the efficiency) for jets that have the other origins (background jets) are shown. The background...","doi":"10.17182/hepdata.104458.v1/t4","id":1210088,"location":"Figure 4b","messages":false,"name":"$W/Z\\rightarrow qq$ tagging rejection","processed_name":"$W/Z\\rightarrowqq$taggingrejection","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653313?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653314?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/yoda1"},"description":"The boson-tagging efficiency for jets arising from $Z/h$ bosons decaying into $b\\bar{b}$ (signal jets). The signal jet efficiency of $Z_{bb}$/$h_{bb}$-tagging...","doi":"10.17182/hepdata.104458.v1/t5","id":1210089,"location":"Figure 4c","messages":false,"name":"$Z/h \\rightarrow bb$ tagging efficiency","processed_name":"$Z/h\\rightarrowbb$taggingefficiency","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653316?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653317?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/yoda1"},"description":"The rejection factor (inverse of the efficiency) for jets that have the other origins (background jets) are shown. The background...","doi":"10.17182/hepdata.104458.v1/t6","id":1210090,"location":"Figure 4d","messages":false,"name":"$Z/h \\rightarrow bb$ tagging rejection","processed_name":"$Z/h\\rightarrowbb$taggingrejection","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653319?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653320?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v1/t7","id":1210091,"location":"Figure 1a auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging efficiency (vs official WP)","processed_name":"$W\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653322?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653323?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v1/t8","id":1210092,"location":"Figure 1c auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging rejection (vs official WP)","processed_name":"$W\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653325?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653326?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v1/t9","id":1210093,"location":"Figure 1b auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging efficiency (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653328?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653329?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v1/t10","id":1210094,"location":"Figure 1d auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging rejection (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653331?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653332?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/csv","json":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/json","root":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/yoda1"},"description":"The total post-fit uncertainty in each of the SRs and VRs.","doi":"10.17182/hepdata.104458.v1/t11","id":1210095,"location":"Figure 9","messages":false,"name":"Total systematic uncertainties","processed_name":"Totalsystematicuncertainties","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653334?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653335?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/json","root":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/yoda1"},"description":"Summary of the observed data and predicted SM background in all SRs. The background prediction in SR-4Q (SR-2B2Q) is obtained...","doi":"10.17182/hepdata.104458.v1/t12","id":1210096,"location":"Figure 10","messages":false,"name":"Data yields and background expectation in the SRs","processed_name":"DatayieldsandbackgroundexpectationintheSRs","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653337?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653338?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/json","root":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/yoda1"},"description":"Number of observed data events and the SM backgrounds in the SRs and the CR0L bins. The SM backgrounds are...","doi":"10.17182/hepdata.104458.v1/t13","id":1210097,"location":"Table 5","messages":false,"name":"Data yields and background breakdown in SR","processed_name":"DatayieldsandbackgroundbreakdowninSR","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653340?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653341?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/json","root":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/yoda1"},"description":"Number of observed data events and the post-fit SM background prediction in the VR1L(1Y) bins and the corresponding CR1L(1Y) bins....","doi":"10.17182/hepdata.104458.v1/t14","id":1210098,"location":"Table 4","messages":false,"name":"Data yields and background breakdown in CR/VR 1L(1Y)","processed_name":"DatayieldsandbackgroundbreakdowninCR/VR1L(1Y)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653343?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653344?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/yoda1"},"description":"$m_{\\textrm{eff}}$ distribution in SR-4Q-VV. The post-fit SM background expectation using the background-only fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v1/t15","id":1210099,"location":"Figure 11a","messages":false,"name":"Effective mass distribution in SR-4Q-VV","processed_name":"EffectivemassdistributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653346?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653347?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $m(J_{1})$ in SR-4Q-VV. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v1/t16","id":1210100,"location":"Figure 2a auxiliary material","messages":false,"name":"Leading large-$R$ jet mass distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653349?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653350?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $D_2(J_{1})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v1/t17","id":1210101,"location":"Figure 2b auxiliary material","messages":false,"name":"Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653352?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653353?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $m(J_{2})$ in SR-4Q-VV. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v1/t18","id":1210102,"location":"Figure 2c auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet mass distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653355?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653356?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $D_2(J_{2})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v1/t19","id":1210103,"location":"Figure 2d auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653358?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653359?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v1/t20","id":1210104,"location":"Figure 11b","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-VZ","processed_name":"$m_{T2}$distributioninSR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653361?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653362?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of $m(J_{bb})$ in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v1/t21","id":1210105,"location":"Figure 3a auxiliary material","messages":false,"name":"bb-tagged jet mass distribution in SR-2B2Q-VZ","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653364?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653365?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} $ in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v1/t22","id":1210106,"location":"Figure 3c auxiliary material","messages":false,"name":"Effective mass distribution in SR-2B2Q-VZ","processed_name":"EffectivemassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653367?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653368?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v1/t23","id":1210107,"location":"Figure 11c","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-Vh","processed_name":"$m_{T2}$distributioninSR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653370?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653371?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of $m(J_{bb})$ in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v1/t24","id":1210108,"location":"Figure 3b auxiliary material","messages":false,"name":"bb-tagged jet mass distribution in SR-2B2Q-Vh","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653373?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653374?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} $ in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v1/t25","id":1210109,"location":"Figure 3d auxiliary material","messages":false,"name":"Effective mass distribution in SR-2B2Q-Vh","processed_name":"EffectivemassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653376?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653377?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t26","id":1210110,"location":"Figure 15a","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653379?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653380?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t27","id":1210111,"location":"Figure 15a","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653382?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653383?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t28","id":1210112,"location":"Figure 15a","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653385?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653386?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t29","id":1210113,"location":"Figure 15a","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653388?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653389?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t30","id":1210114,"location":"Figure 15a","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653391?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653392?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t31","id":1210115,"location":"Figure 15b","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653394?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653395?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t32","id":1210116,"location":"Figure 15b","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653397?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653398?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t33","id":1210117,"location":"Figure 15b","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653400?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653401?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t34","id":1210118,"location":"Figure 15b","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653403?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653404?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t35","id":1210119,"location":"Figure 15b","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653406?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653407?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t36","id":1210120,"location":"Figure 15b","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653409?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653410?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t37","id":1210121,"location":"Figure 15c","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653412?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653413?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t38","id":1210122,"location":"Figure 15c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653415?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653416?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t39","id":1210123,"location":"Figure 15c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653418?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653419?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t40","id":1210124,"location":"Figure 15c","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653421?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653422?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t41","id":1210125,"location":"Figure 15c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653424?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653425?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v1/t42","id":1210126,"location":"Figure 15c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653427?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653428?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t43","id":1210127,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653430?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653431?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t44","id":1210128,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653433?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653434?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t45","id":1210129,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653436?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653437?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t46","id":1210130,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653439?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653440?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t47","id":1210131,"location":"Figure 12a,12c","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653442?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653443?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t48","id":1210132,"location":"Figure 12c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653445?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653446?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t49","id":1210133,"location":"Figure 12c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653448?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653449?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t50","id":1210134,"location":"Figure 12b,12c","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653451?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653452?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t51","id":1210135,"location":"Figure 12c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653454?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653455?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t52","id":1210136,"location":"Figure 12c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653457?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653458?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t53","id":1210137,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653460?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653461?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t54","id":1210138,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653463?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653464?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t55","id":1210139,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653466?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653467?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t56","id":1210140,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653469?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653470?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t57","id":1210141,"location":"Figure 12a,12d","messages":false,"name":"Exp limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653472?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653473?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t58","id":1210142,"location":"Figure 12d","messages":false,"name":"Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653475?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653476?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v1/t59","id":1210143,"location":"Figure 12b,12d","messages":false,"name":"Obs limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653478?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653479?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t60","id":1210144,"location":"Figure 12d","messages":false,"name":"Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653481?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653482?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v1/t61","id":1210145,"location":"Figure 12d","messages":false,"name":"Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653484?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653485?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t62","id":1210146,"location":"Figure 14c","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, mu>0","processed_name":"Explimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653487?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653488?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t63","id":1210147,"location":"Figure 14c","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653490?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653491?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t64","id":1210148,"location":"Figure 14c","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653493?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653494?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t65","id":1210149,"location":"Figure 14c","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653496?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653497?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t66","id":1210150,"location":"Figure 14c","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653499?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653500?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t67","id":1210151,"location":"Figure 14c","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653502?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653503?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t68","id":1210152,"location":"Figure 14d","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, mu>0","processed_name":"Explimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653505?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653506?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t69","id":1210153,"location":"Figure 14d","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653508?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653509?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t70","id":1210154,"location":"Figure 14d","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653511?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653512?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t71","id":1210155,"location":"Figure 14d","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653514?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653515?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v1/t72","id":1210156,"location":"Figure 14d","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653517?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653518?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t73","id":1210157,"location":"Figure 14b","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653520?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653521?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t74","id":1210158,"location":"Figure 14a","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653523?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653524?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t75","id":1210159,"location":"Figure 14a","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653526?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653527?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t76","id":1210160,"location":"Figure 14b","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653529?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653530?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t77","id":1210161,"location":"Figure 14a","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653532?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653533?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t78","id":1210162,"location":"Figure 14a","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653535?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653536?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t79","id":1210163,"location":"Figure 14b","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Explimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653538?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653539?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t80","id":1210164,"location":"Figure 14a","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653541?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653542?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t81","id":1210165,"location":"Figure 14b","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653544?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653545?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t82","id":1210166,"location":"Figure 14a","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653547?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653548?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v1/t83","id":1210167,"location":"Figure 14a","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653550?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653551?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t84","id":1210168,"location":"Figure 16","messages":false,"name":"Exp limit on (H~, G~)","processed_name":"Explimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653553?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653554?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t85","id":1210169,"location":"Figure 16","messages":false,"name":"Exp limit (+1sig) on (H~, G~)","processed_name":"Explimit(+1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653556?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653557?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t86","id":1210170,"location":"Figure 16","messages":false,"name":"Exp limit (-1sig) on (H~, G~)","processed_name":"Explimit(-1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653559?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653560?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t87","id":1210171,"location":"Figure 16","messages":false,"name":"Obs limit on (H~, G~)","processed_name":"Obslimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653562?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653563?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t88","id":1210172,"location":"Figure 16","messages":false,"name":"Obs limit (+1sig) on (H~, G~)","processed_name":"Obslimit(+1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653565?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653566?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v1/t89","id":1210173,"location":"Figure 16","messages":false,"name":"Obs limit (-1sig) on (H~, G~)","processed_name":"Obslimit(-1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653568?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653569?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t90","id":1210174,"location":"Figure 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653571?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653572?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t91","id":1210175,"location":"Figure 17a","messages":false,"name":"Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653574?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653575?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t92","id":1210176,"location":"Figure 17a","messages":false,"name":"Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653577?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653578?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t93","id":1210177,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653580?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653581?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t94","id":1210178,"location":"Figure 17a","messages":false,"name":"Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653583?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653584?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t95","id":1210179,"location":"Figure 17a","messages":false,"name":"Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653586?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653587?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t96","id":1210180,"location":"Figure 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653589?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653590?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t97","id":1210181,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653592?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653593?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t98","id":1210182,"location":"Figure 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653595?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653596?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t99","id":1210183,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653598?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653599?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v1/t100","id":1210184,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 25%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=25%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653601?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653602?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t101","id":1210185,"location":"Figure 4a auxiliary material","messages":false,"name":"B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0","processed_name":"B(C2->W+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653604?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653605?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t102","id":1210186,"location":"Figure 4c auxiliary material","messages":false,"name":"B(C2->Z+C1) in (W~, H~), tanb=10, mu>0","processed_name":"B(C2->Z+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653607?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653608?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t103","id":1210187,"location":"Figure 4e auxiliary material","messages":false,"name":"B(C2->h+C1) in (W~, H~), tanb=10, mu>0","processed_name":"B(C2->h+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653610?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653611?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t104","id":1210188,"location":"Figure 4b auxiliary material","messages":false,"name":"B(N3->W+C1) in (W~, H~), tanb=10, mu>0","processed_name":"B(N3->W+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653613?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653614?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t105","id":1210189,"location":"Figure 4d auxiliary material","messages":false,"name":"B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0","processed_name":"B(N3->Z+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653616?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653617?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v1/t106","id":1210190,"location":"Figure 4f auxiliary material","messages":false,"name":"B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0","processed_name":"B(N3->h+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653619?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653620?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t107","id":1210191,"location":"Figure 5a auxiliary material","messages":false,"name":"B(C2->W+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(C2->W+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653622?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653623?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t108","id":1210192,"location":"Figure 5b auxiliary material","messages":false,"name":"B(C2->Z+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(C2->Z+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653625?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653626?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t109","id":1210193,"location":"Figure 5c auxiliary material","messages":false,"name":"B(C2->h+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(C2->h+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653628?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653629?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t110","id":1210194,"location":"Figure 5d auxiliary material","messages":false,"name":"B(N2->W+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N2->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653631?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653632?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t111","id":1210195,"location":"Figure 5e auxiliary material","messages":false,"name":"B(N2->Z+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N2->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653634?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653635?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t112","id":1210196,"location":"Figure 5f auxiliary material","messages":false,"name":"B(N2->h+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N2->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653637?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653638?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t113","id":1210197,"location":"Figure 5g auxiliary material","messages":false,"name":"B(N3->W+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N3->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653640?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653641?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t114","id":1210198,"location":"Figure 5h auxiliary material","messages":false,"name":"B(N3->Z+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N3->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653643?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653644?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v1/t115","id":1210199,"location":"Figure 5i auxiliary material","messages":false,"name":"B(N3->h+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N3->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653646?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653647?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v1/t116","id":1210200,"location":"Figure 7a auxiliary material","messages":false,"name":"Expected cross-section upper limit on C1C1-WW","processed_name":"Expectedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653649?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653650?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v1/t117","id":1210201,"location":"Figure 7b auxiliary material","messages":false,"name":"Expected cross-section upper limit on C1N2-WZ","processed_name":"Expectedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653652?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653653?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v1/t118","id":1210202,"location":"Figure 7c auxiliary material","messages":false,"name":"Expected cross-section upper limit on C1N2-Wh","processed_name":"Expectedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653655?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653656?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ models. The black numbers represents the expected cross-section upper-limits.","doi":"10.17182/hepdata.104458.v1/t119","id":1210203,"location":"Figure 7d auxiliary material","messages":false,"name":"Expected cross-section upper limit on (H~, G~)","processed_name":"Expectedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653658?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653659?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v1/t120","id":1210204,"location":"Figure 8a auxiliary material","messages":false,"name":"Observed cross-section upper limit on C1C1-WW","processed_name":"Observedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653661?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653662?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v1/t121","id":1210205,"location":"Figure 8b auxiliary material","messages":false,"name":"Observed cross-section upper limit on C1N2-WZ","processed_name":"Observedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653664?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653665?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v1/t122","id":1210206,"location":"Figure 8c auxiliary material","messages":false,"name":"Observed cross-section upper limit on C1N2-Wh","processed_name":"Observedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653667?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653668?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ models. The black numbers represents the observed cross-section upper-limits.","doi":"10.17182/hepdata.104458.v1/t123","id":1210207,"location":"Figure 8d auxiliary material","messages":false,"name":"Observed cross-section upper limit on (H~, G~)","processed_name":"Observedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653670?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653671?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1C1-WW) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t124","id":1210208,"location":"Figure 9a auxiliary material","messages":false,"name":"Acceptance of C1C1-WW signals by SR-4Q-VV","processed_name":"AcceptanceofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653673?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653674?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t125","id":1210209,"location":"Figure 9b auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals by SR-4Q-VV","processed_name":"AcceptanceofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653676?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653677?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t126","id":1210210,"location":"Figure 9c auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals by SR-2B2Q-VZ","processed_name":"AcceptanceofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653679?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653680?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-Wh) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t127","id":1210211,"location":"Figure 9d auxiliary material","messages":false,"name":"Acceptance of C1N2-Wh signals by SR-2B2Q-Vh","processed_name":"AcceptanceofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653682?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653683?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t128","id":1210212,"location":"Figure 10a auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals by SR-4Q-VV","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653685?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653686?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t129","id":1210213,"location":"Figure 10b auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653688?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653689?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-Zh) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t130","id":1210214,"location":"Figure 10c auxiliary material","messages":false,"name":"Acceptance of N2N3-Zh signals by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653691?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653692?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-hh) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v1/t131","id":1210215,"location":"Figure 10d auxiliary material","messages":false,"name":"Acceptance of N2N3-hh signals by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653694?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653695?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of the $(\\tilde{H},\\tilde{G})$ model by SR-4Q-VV, evaluated using MC simulation. The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v1/t132","id":1210216,"location":"Figure 11a auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals by SR-4Q-VV","processed_name":"Acceptanceof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653697?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653698?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-VZ, evaluated using MC simulation. The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v1/t133","id":1210217,"location":"Figure 11b auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals by SR-2B2Q-VZ","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653700?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653701?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-Vh, evaluated using MC simulation. The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v1/t134","id":1210218,"location":"Figure 11c auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals by SR-2B2Q-Vh","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653703?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653704?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1C1-WW) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t135","id":1210219,"location":"Figure 12a auxiliary material","messages":false,"name":"Efficiency of C1C1-WW signals by SR-4Q-VV","processed_name":"EfficiencyofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653706?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653707?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t136","id":1210220,"location":"Figure 12b auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals by SR-4Q-VV","processed_name":"EfficiencyofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653709?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653710?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t137","id":1210221,"location":"Figure 12c auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals by SR-2B2Q-VZ","processed_name":"EfficiencyofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653712?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653713?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-Wh) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t138","id":1210222,"location":"Figure 12d auxiliary material","messages":false,"name":"Efficiency of C1N2-Wh signals by SR-2B2Q-Vh","processed_name":"EfficiencyofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653715?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653716?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t139","id":1210223,"location":"Figure 13a auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals by SR-4Q-VV","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653718?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653719?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t140","id":1210224,"location":"Figure 13b auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653721?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653722?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-Zh) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t141","id":1210225,"location":"Figure 13c auxiliary material","messages":false,"name":"Efficiency of N2N3-Zh signals by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653724?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653725?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-hh) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v1/t142","id":1210226,"location":"Figure 13d auxiliary material","messages":false,"name":"Efficiency of N2N3-hh signals by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653727?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653728?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ in SR-4Q-VV. The efficiency in a given SR is defined by the ratio of weighted events selected...","doi":"10.17182/hepdata.104458.v1/t143","id":1210227,"location":"Figure 14a auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals by SR-4Q-VV","processed_name":"Efficiencyof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653730?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653731?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ in SR-2B2Q-VZ. The efficiency in a given SR is defined by the ratio of weighted events selected...","doi":"10.17182/hepdata.104458.v1/t144","id":1210228,"location":"Figure 14b auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals by SR-2B2Q-VZ","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653733?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653734?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ in SR-2B2Q-Vh. The efficiency in a given SR is defined by the ratio of weighted events selected...","doi":"10.17182/hepdata.104458.v1/t145","id":1210229,"location":"Figure 14c auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals by SR-2B2Q-Vh","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/2653736?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/2653737?landing_page=true"}]}],"mode":"record","participant_count":3,"recid":104458,"record":{"abstract":"A search for charginos and neutralinos at the Large Hadron Collider is reported using fully hadronic final states and missing transverse momentum. Pair-produced charginos or neutralinos are explored, each decaying into a high-$p_{\\text{T}}$ Standard Model weak boson. Fully-hadronic final states are studied to exploit the advantage of the large branching ratio, and the efficient background rejection by identifying the high-$p_{\\text{T}}$ bosons using large-radius jets and jet substructure information. An integrated luminosity of 139 fb$^{-1}$ of proton-proton collision data collected by the ATLAS detector at a center-of-mass energy of 13 TeV is used. No significant excess is found beyond the Standard Model expectation. The 95% confidence level exclusion limits are set on wino or higgsino production with varying assumptions in the decay branching ratios and the type of the lightest supersymmetric particle. A wino (higgsino) mass up to 1060 (900) GeV is excluded when the lightest SUSY particle mass is below 400 (240) GeV and the mass splitting is larger than 400 (450) GeV. The sensitivity to high-mass wino and higgsino is significantly extended compared with the previous LHC searches using the other final states.","access_urls":{"links":{"csv":"https://www.hepdata.net/download/submission/ins1906174/3/csv","json":"https://www.hepdata.net/download/submission/ins1906174/3/json","root":"https://www.hepdata.net/download/submission/ins1906174/3/root","yaml":"https://www.hepdata.net/download/submission/ins1906174/3/yaml","yoda":"https://www.hepdata.net/download/submission/ins1906174/3/yoda"}},"analyses":[{"analysis":"https://www.hepdata.net/record/resource/3458718?landing_page=true","filename":"FullLikelihood_forHEPData.tar","type":"HistFactory"},{"analysis":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41","type":"SModelS"}],"arxiv_id":"arXiv:2108.07586","collaborations":["ATLAS"],"control_number":"104458","creation_date":"2021-08-17","data_abstract":"","doc_type":"publication","doi":"10.1103/PhysRevD.104.112010","first_author":{"affiliation":"Marseille, CPPM","full_name":"Aad, Georges"},"hepdata_doi":"10.17182/hepdata.104458.v1","id":104458,"inspire_id":"1906174","journal_info":"Phys.Rev.D 104 (2021) 112010","keywords":[{"schema":"INSPIRE","value":"p p: colliding beams"},{"schema":"INSPIRE","value":"transverse momentum: missing-energy"},{"schema":"INSPIRE","value":"p p: scattering"},{"schema":"INSPIRE","value":"final state: hadronic"},{"schema":"INSPIRE","value":"final state: ((n)jet)"},{"schema":"INSPIRE","value":"neutralino: pair production"},{"schema":"INSPIRE","value":"chargino: pair production"},{"schema":"INSPIRE","value":"sparticle: branching ratio"},{"schema":"INSPIRE","value":"CERN LHC Coll"},{"schema":"INSPIRE","value":"ATLAS"},{"schema":"INSPIRE","value":"sparticle: pair production"},{"schema":"INSPIRE","value":"new physics: search for"},{"schema":"INSPIRE","value":"sensitivity"},{"schema":"INSPIRE","value":"vector boson: hadronic decay"},{"schema":"INSPIRE","value":"mass difference"},{"schema":"INSPIRE","value":"supersymmetry"},{"schema":"INSPIRE","value":"background"},{"schema":"INSPIRE","value":"structure"},{"schema":"INSPIRE","value":"track data analysis: jet"},{"schema":"INSPIRE","value":"channel cross section: upper limit"},{"schema":"INSPIRE","value":"chargino: mass: lower limit"},{"schema":"INSPIRE","value":"neutralino: mass: lower limit"},{"schema":"INSPIRE","value":"Higgsino: mass"},{"schema":"INSPIRE","value":"experimental results"},{"schema":"INSPIRE","value":"13000 GeV-cms"},{"schema":"PDG","value":"S046PHA"},{"schema":"PDG","value":"S046WNO"}],"last_updated":"Mon, 06 Sep 2021 16:25:16 GMT","parent_child_join":{"name":"parent_publication"},"publication_date":"2021-11-01T00:00:00","recid":104458,"resources":[{"description":"Webpage with all figures and tables","type":"html","url":"https://atlas.web.cern.ch/Atlas/GROUPS/PHYSICS/PAPERS/SUSY-2018-41/"},{"description":"Analysis code at truth label using SimpleAnalysis framework without boson tagging efficiency due to lack of jet substructure variables","type":"C++","url":"https://www.hepdata.net/record/resource/3458710?landing_page=true"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458711?landing_page=true"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458712?landing_page=true"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458713?landing_page=true"},{"description":"SHLA file for GGM-Higgsino model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458714?landing_page=true"},{"description":"SHLA file for N2N3-ZZ hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458715?landing_page=true"},{"description":"SHLA file for N2N3-Zh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458716?landing_page=true"},{"description":"SHLA file for N2N3-hh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458717?landing_page=true"},{"description":"HistFactory likelihoods JSON files","type":"HistFactory","url":"https://www.hepdata.net/record/resource/3458718?landing_page=true"},{"description":null,"type":"SModelS","url":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41"}],"subject_area":["hep-ex"],"summary_authors":[{"affiliation":"Marseille, CPPM","full_name":"Aad, Georges"},{"affiliation":"Oklahoma U.","full_name":"Abbott, Braden Keim"},{"affiliation":"Massachusetts U., Amherst","full_name":"Abbott, Dale"},{"affiliation":"CERN","full_name":"Abed Abud, Adam"},{"affiliation":"Gottingen U., II. Phys. Inst.","full_name":"Abeling, Kira"},{"affiliation":"Royal Holloway, U. of London","full_name":"Abhayasinghe, Deshan Kavishka"},{"affiliation":"Brookhaven","full_name":"Abidi, Haider"},{"affiliation":"Tel Aviv U.","full_name":"Abramowicz, Halina"},{"affiliation":"Technion","full_name":"Abreu, Henso"},{"affiliation":"Argonne","full_name":"Abulaiti, Yiming"}],"title":"Search for charginos and neutralinos in final states with two boosted hadronically decaying bosons and missing transverse momentum in $pp$ collisions at $\\sqrt{s}=13$ TeV with the ATLAS detector","type":["article"],"uuid":"e06d0d13-c307-4ff4-a790-2e4295172b59","version":3,"year":"2021"},"record_type":"publication","related_recids":[],"related_to_this_recids":[],"resources_with_doi":[{"description":"Analysis code at truth label using SimpleAnalysis framework without boson tagging efficiency due to lack of jet substructure variables","doi":"10.17182/hepdata.104458.v1/r1","filename":"ANA-SUSY-2019-41.cxx"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","doi":"10.17182/hepdata.104458.v1/r2","filename":"susy_params_C1C1_WW_700_100.slha"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","doi":"10.17182/hepdata.104458.v1/r3","filename":"susy_params_C1N2_WZ_900_100.slha"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","doi":"10.17182/hepdata.104458.v1/r4","filename":"susy_params_C1N2_Wh_900_100.slha"},{"description":"SHLA file for GGM-Higgsino model","doi":"10.17182/hepdata.104458.v1/r5","filename":"susy_params_GGMHino_C1N2N1_800.slha"},{"description":"SHLA file for N2N3-ZZ hinoBino simplified model","doi":"10.17182/hepdata.104458.v1/r6","filename":"susy_params_N2N3_ZZ_800_100.slha"},{"description":"SHLA file for N2N3-Zh hinoBino simplified model","doi":"10.17182/hepdata.104458.v1/r7","filename":"susy_params_N2N3_Zh_800_100.slha"},{"description":"SHLA file for N2N3-hh hinoBino simplified model","doi":"10.17182/hepdata.104458.v1/r8","filename":"susy_params_N2N3_hh_800_100.slha"}],"reviewers_notified":false,"site_url":"https://www.hepdata.net","status":"finished","table_id_to_show":1210085,"table_name_to_show":"Table of contents","version":1,"version_count":3,"watched":false} diff --git a/workflows/tests/data_records/ins1906174_version2.json b/workflows/tests/data_records/ins1906174_version2.json new file mode 100644 index 000000000..c0df75d7f --- /dev/null +++ b/workflows/tests/data_records/ins1906174_version2.json @@ -0,0 +1 @@ +{"access_count":{"sum":13379},"additional_resources":true,"breadcrumb_text":"Aad, Georges et al.","coordinator":40,"data_tables":[{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Table of contents/csv","json":"https://www.hepdata.net/download/table/ins1906174/Table of contents/json","root":"https://www.hepdata.net/download/table/ins1906174/Table of contents/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Table of contents/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Table of contents/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Table of contents/yoda1"},"description":"- - - - - - - - Overview of HEPData Record - - - - - - - -...","doi":"10.17182/hepdata.104458.v2/t1","id":1543719,"location":null,"messages":false,"name":"Table of contents","processed_name":"Tableofcontents","resources":[]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/csv","json":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/json","root":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/yoda1"},"description":"Cut flows of some representative signals up to SR-4Q-VV, SR-2B2Q-VZ, and SR-2B2Q-Vh. One signal point from the $(\\tilde{W},~\\tilde{B})$ simplified models...","doi":"10.17182/hepdata.104458.v2/t2","id":1543720,"location":"Table 1 auxiliary material","messages":false,"name":"Cut flows for the representative signals","processed_name":"Cutflowsfortherepresentativesignals","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379370?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379371?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/yoda1"},"description":"The boson-tagging efficiency for jets arising from $W/Z$ bosons decaying into $q\\bar{q}$ (signal jets) are shown. The signal jet efficiency...","doi":"10.17182/hepdata.104458.v2/t3","id":1543721,"location":"Figure 4a","messages":false,"name":"$W/Z\\rightarrow qq$ tagging efficiency","processed_name":"$W/Z\\rightarrowqq$taggingefficiency","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379373?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379374?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/yoda1"},"description":"The rejection factor (inverse of the efficiency) for jets that have the other origins (background jets) are shown. The background...","doi":"10.17182/hepdata.104458.v2/t4","id":1543722,"location":"Figure 4b","messages":false,"name":"$W/Z\\rightarrow qq$ tagging rejection","processed_name":"$W/Z\\rightarrowqq$taggingrejection","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379376?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379377?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/yoda1"},"description":"The boson-tagging efficiency for jets arising from $Z/h$ bosons decaying into $b\\bar{b}$ (signal jets). The signal jet efficiency of $Z_{bb}$/$h_{bb}$-tagging...","doi":"10.17182/hepdata.104458.v2/t5","id":1543723,"location":"Figure 4c","messages":false,"name":"$Z/h \\rightarrow bb$ tagging efficiency","processed_name":"$Z/h\\rightarrowbb$taggingefficiency","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379379?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379380?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/yoda1"},"description":"The rejection factor (inverse of the efficiency) for jets that have the other origins (background jets) are shown. The background...","doi":"10.17182/hepdata.104458.v2/t6","id":1543724,"location":"Figure 4d","messages":false,"name":"$Z/h \\rightarrow bb$ tagging rejection","processed_name":"$Z/h\\rightarrowbb$taggingrejection","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379382?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379383?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v2/t7","id":1543725,"location":"Figure 1a auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging efficiency (vs official WP)","processed_name":"$W\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379385?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379386?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v2/t8","id":1543726,"location":"Figure 1c auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging rejection (vs official WP)","processed_name":"$W\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379388?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379389?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v2/t9","id":1543727,"location":"Figure 1b auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging efficiency (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379391?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379392?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v2/t10","id":1543728,"location":"Figure 1d auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging rejection (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379394?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379395?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/csv","json":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/json","root":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/yoda1"},"description":"The total post-fit uncertainty in each of the SRs and VRs.","doi":"10.17182/hepdata.104458.v2/t11","id":1543729,"location":"Figure 9","messages":false,"name":"Total systematic uncertainties","processed_name":"Totalsystematicuncertainties","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379397?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379398?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/json","root":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/yoda1"},"description":"Summary of the observed data and predicted SM background in all SRs. The background prediction in SR-4Q (SR-2B2Q) is obtained...","doi":"10.17182/hepdata.104458.v2/t12","id":1543730,"location":"Figure 10","messages":false,"name":"Data yields and background expectation in the SRs","processed_name":"DatayieldsandbackgroundexpectationintheSRs","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379400?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379401?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/json","root":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/yoda1"},"description":"Number of observed data events and the SM backgrounds in the SRs and the CR0L bins. The SM backgrounds are...","doi":"10.17182/hepdata.104458.v2/t13","id":1543731,"location":"Table 5","messages":false,"name":"Data yields and background breakdown in SR","processed_name":"DatayieldsandbackgroundbreakdowninSR","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379403?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379404?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/json","root":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/yoda1"},"description":"Number of observed data events and the post-fit SM background prediction in the VR1L(1Y) bins and the corresponding CR1L(1Y) bins....","doi":"10.17182/hepdata.104458.v2/t14","id":1543732,"location":"Table 4","messages":false,"name":"Data yields and background breakdown in CR/VR 1L(1Y)","processed_name":"DatayieldsandbackgroundbreakdowninCR/VR1L(1Y)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379406?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379407?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/yoda1"},"description":"$m_{\\textrm{eff}}$ distribution in SR-4Q-VV. The post-fit SM background expectation using the background-only fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v2/t15","id":1543733,"location":"Figure 11a","messages":false,"name":"Effective mass distribution in SR-4Q-VV","processed_name":"EffectivemassdistributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379409?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379410?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $m(J_{1})$ in SR-4Q-VV. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v2/t16","id":1543734,"location":"Figure 2a auxiliary material","messages":false,"name":"Leading large-$R$ jet mass distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379412?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379413?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $D_2(J_{1})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v2/t17","id":1543735,"location":"Figure 2b auxiliary material","messages":false,"name":"Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379415?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379416?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $m(J_{2})$ in SR-4Q-VV. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v2/t18","id":1543736,"location":"Figure 2c auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet mass distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379418?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379419?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $D_2(J_{2})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v2/t19","id":1543737,"location":"Figure 2d auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379421?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379422?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v2/t20","id":1543738,"location":"Figure 11b","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-VZ","processed_name":"$m_{T2}$distributioninSR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379424?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379425?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of $m(J_{bb})$ in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v2/t21","id":1543739,"location":"Figure 3a auxiliary material","messages":false,"name":"bb-tagged jet mass distribution in SR-2B2Q-VZ","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379427?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379428?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} $ in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v2/t22","id":1543740,"location":"Figure 3c auxiliary material","messages":false,"name":"Effective mass distribution in SR-2B2Q-VZ","processed_name":"EffectivemassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379430?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379431?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v2/t23","id":1543741,"location":"Figure 11c","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-Vh","processed_name":"$m_{T2}$distributioninSR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379433?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379434?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of $m(J_{bb})$ in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v2/t24","id":1543742,"location":"Figure 3b auxiliary material","messages":false,"name":"bb-tagged jet mass distribution in SR-2B2Q-Vh","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379436?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379437?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} $ in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v2/t25","id":1543743,"location":"Figure 3d auxiliary material","messages":false,"name":"Effective mass distribution in SR-2B2Q-Vh","processed_name":"EffectivemassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379439?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379440?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t26","id":1543744,"location":"Figure 15a","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379442?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379443?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t27","id":1543745,"location":"Figure 15a","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379445?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379446?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t28","id":1543746,"location":"Figure 15a","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379448?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379449?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t29","id":1543747,"location":"Figure 15a","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379451?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379452?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t30","id":1543748,"location":"Figure 15a","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379454?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379455?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t31","id":1543749,"location":"Figure 15b","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379457?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379458?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t32","id":1543750,"location":"Figure 15b","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379460?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379461?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t33","id":1543751,"location":"Figure 15b","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379463?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379464?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t34","id":1543752,"location":"Figure 15b","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379466?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379467?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t35","id":1543753,"location":"Figure 15b","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379469?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379470?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t36","id":1543754,"location":"Figure 15b","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379472?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379473?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t37","id":1543755,"location":"Figure 15c","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379475?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379476?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t38","id":1543756,"location":"Figure 15c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379478?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379479?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t39","id":1543757,"location":"Figure 15c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379481?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379482?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t40","id":1543758,"location":"Figure 15c","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379484?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379485?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t41","id":1543759,"location":"Figure 15c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379487?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379488?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v2/t42","id":1543760,"location":"Figure 15c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379490?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379491?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t43","id":1543761,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379493?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379494?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t44","id":1543762,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379496?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379497?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t45","id":1543763,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379499?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379500?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t46","id":1543764,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379502?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379503?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t47","id":1543765,"location":"Figure 12a,12c","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379505?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379506?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t48","id":1543766,"location":"Figure 12c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379508?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379509?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t49","id":1543767,"location":"Figure 12c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379511?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379512?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t50","id":1543768,"location":"Figure 12b,12c","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379514?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379515?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t51","id":1543769,"location":"Figure 12c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379517?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379518?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t52","id":1543770,"location":"Figure 12c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379520?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379521?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t53","id":1543771,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379523?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379524?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t54","id":1543772,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379526?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379527?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t55","id":1543773,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379529?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379530?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t56","id":1543774,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379532?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379533?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t57","id":1543775,"location":"Figure 12a,12d","messages":false,"name":"Exp limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379535?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379536?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t58","id":1543776,"location":"Figure 12d","messages":false,"name":"Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379538?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379539?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v2/t59","id":1543777,"location":"Figure 12b,12d","messages":false,"name":"Obs limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379541?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379542?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t60","id":1543778,"location":"Figure 12d","messages":false,"name":"Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379544?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379545?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v2/t61","id":1543779,"location":"Figure 12d","messages":false,"name":"Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379547?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379548?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t62","id":1543780,"location":"Figure 14c","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, mu>0","processed_name":"Explimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379550?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379551?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t63","id":1543781,"location":"Figure 14c","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379553?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379554?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t64","id":1543782,"location":"Figure 14c","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379556?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379557?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t65","id":1543783,"location":"Figure 14c","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379559?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379560?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t66","id":1543784,"location":"Figure 14c","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379562?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379563?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t67","id":1543785,"location":"Figure 14c","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379565?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379566?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t68","id":1543786,"location":"Figure 14d","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, mu>0","processed_name":"Explimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379568?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379569?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t69","id":1543787,"location":"Figure 14d","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379571?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379572?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t70","id":1543788,"location":"Figure 14d","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379574?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379575?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t71","id":1543789,"location":"Figure 14d","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379577?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379578?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v2/t72","id":1543790,"location":"Figure 14d","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379580?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379581?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t73","id":1543791,"location":"Figure 14b","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379583?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379584?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t74","id":1543792,"location":"Figure 14a","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379586?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379587?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t75","id":1543793,"location":"Figure 14a","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379589?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379590?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t76","id":1543794,"location":"Figure 14b","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379592?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379593?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t77","id":1543795,"location":"Figure 14a","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379595?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379596?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t78","id":1543796,"location":"Figure 14a","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379598?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379599?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t79","id":1543797,"location":"Figure 14b","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Explimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379601?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379602?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t80","id":1543798,"location":"Figure 14a","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379604?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379605?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t81","id":1543799,"location":"Figure 14b","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379607?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379608?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t82","id":1543800,"location":"Figure 14a","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379610?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379611?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v2/t83","id":1543801,"location":"Figure 14a","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379613?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379614?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t84","id":1543802,"location":"Figure 16","messages":false,"name":"Exp limit on (H~, G~)","processed_name":"Explimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379616?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379617?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t85","id":1543803,"location":"Figure 16","messages":false,"name":"Exp limit (+1sig) on (H~, G~)","processed_name":"Explimit(+1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379619?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379620?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t86","id":1543804,"location":"Figure 16","messages":false,"name":"Exp limit (-1sig) on (H~, G~)","processed_name":"Explimit(-1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379622?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379623?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t87","id":1543805,"location":"Figure 16","messages":false,"name":"Obs limit on (H~, G~)","processed_name":"Obslimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379625?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379626?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t88","id":1543806,"location":"Figure 16","messages":false,"name":"Obs limit (+1sig) on (H~, G~)","processed_name":"Obslimit(+1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379628?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379629?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v2/t89","id":1543807,"location":"Figure 16","messages":false,"name":"Obs limit (-1sig) on (H~, G~)","processed_name":"Obslimit(-1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379631?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379632?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t90","id":1543808,"location":"Figure 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379634?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379635?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t91","id":1543809,"location":"Figure 17a","messages":false,"name":"Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379637?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379638?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t92","id":1543810,"location":"Figure 17a","messages":false,"name":"Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379640?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379641?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t93","id":1543811,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379643?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379644?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t94","id":1543812,"location":"Figure 17a","messages":false,"name":"Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379646?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379647?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t95","id":1543813,"location":"Figure 17a","messages":false,"name":"Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379649?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379650?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t96","id":1543814,"location":"Figure 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379652?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379653?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t97","id":1543815,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379655?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379656?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t98","id":1543816,"location":"Figure 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379658?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379659?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t99","id":1543817,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379661?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379662?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v2/t100","id":1543818,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 25%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=25%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379664?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379665?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t101","id":1543819,"location":"Figure 4a auxiliary material","messages":false,"name":"B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0","processed_name":"B(C2->W+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379668?landing_page=true"},{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379667?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t102","id":1543820,"location":"Figure 4c auxiliary material","messages":false,"name":"B(C2->Z+C1) in (W~, H~), tanb=10, mu>0","processed_name":"B(C2->Z+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379670?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379671?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t103","id":1543821,"location":"Figure 4e auxiliary material","messages":false,"name":"B(C2->h+C1) in (W~, H~), tanb=10, mu>0","processed_name":"B(C2->h+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379673?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379674?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t104","id":1543822,"location":"Figure 4b auxiliary material","messages":false,"name":"B(N3->W+C1) in (W~, H~), tanb=10, mu>0","processed_name":"B(N3->W+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379676?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379677?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t105","id":1543823,"location":"Figure 4d auxiliary material","messages":false,"name":"B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0","processed_name":"B(N3->Z+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379679?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379680?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v2/t106","id":1543824,"location":"Figure 4f auxiliary material","messages":false,"name":"B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0","processed_name":"B(N3->h+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379682?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379683?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t107","id":1543825,"location":"Figure 5a auxiliary material","messages":false,"name":"B(C2->W+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(C2->W+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379685?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379686?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t108","id":1543826,"location":"Figure 5b auxiliary material","messages":false,"name":"B(C2->Z+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(C2->Z+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379688?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379689?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t109","id":1543827,"location":"Figure 5c auxiliary material","messages":false,"name":"B(C2->h+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(C2->h+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379691?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379692?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t110","id":1543828,"location":"Figure 5d auxiliary material","messages":false,"name":"B(N2->W+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N2->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379694?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379695?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t111","id":1543829,"location":"Figure 5e auxiliary material","messages":false,"name":"B(N2->Z+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N2->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379697?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379698?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t112","id":1543830,"location":"Figure 5f auxiliary material","messages":false,"name":"B(N2->h+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N2->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379700?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379701?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t113","id":1543831,"location":"Figure 5g auxiliary material","messages":false,"name":"B(N3->W+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N3->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379703?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379704?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t114","id":1543832,"location":"Figure 5h auxiliary material","messages":false,"name":"B(N3->Z+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N3->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379706?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379707?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v2/t115","id":1543833,"location":"Figure 5i auxiliary material","messages":false,"name":"B(N3->h+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N3->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379709?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379710?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v2/t116","id":1543834,"location":"Figure 7a auxiliary material","messages":false,"name":"Expected cross-section upper limit on C1C1-WW","processed_name":"Expectedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379712?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379713?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v2/t117","id":1543835,"location":"Figure 7b auxiliary material","messages":false,"name":"Expected cross-section upper limit on C1N2-WZ","processed_name":"Expectedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379715?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379716?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v2/t118","id":1543836,"location":"Figure 7c auxiliary material","messages":false,"name":"Expected cross-section upper limit on C1N2-Wh","processed_name":"Expectedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379718?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379719?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ models. The black numbers represents the expected cross-section upper-limits.","doi":"10.17182/hepdata.104458.v2/t119","id":1543837,"location":"Figure 7d auxiliary material","messages":false,"name":"Expected cross-section upper limit on (H~, G~)","processed_name":"Expectedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379721?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379722?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v2/t120","id":1543838,"location":"Figure 8a auxiliary material","messages":false,"name":"Observed cross-section upper limit on C1C1-WW","processed_name":"Observedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379724?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379725?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v2/t121","id":1543839,"location":"Figure 8b auxiliary material","messages":false,"name":"Observed cross-section upper limit on C1N2-WZ","processed_name":"Observedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379727?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379728?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v2/t122","id":1543840,"location":"Figure 8c auxiliary material","messages":false,"name":"Observed cross-section upper limit on C1N2-Wh","processed_name":"Observedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379730?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379731?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ models. The black numbers represents the observed cross-section upper-limits.","doi":"10.17182/hepdata.104458.v2/t123","id":1543841,"location":"Figure 8d auxiliary material","messages":false,"name":"Observed cross-section upper limit on (H~, G~)","processed_name":"Observedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379733?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379734?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1C1-WW) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t124","id":1543842,"location":"Figure 9a auxiliary material","messages":false,"name":"Acceptance of C1C1-WW signals by SR-4Q-VV","processed_name":"AcceptanceofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379736?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379737?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t125","id":1543843,"location":"Figure 9b auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals by SR-4Q-VV","processed_name":"AcceptanceofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379739?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379740?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t126","id":1543844,"location":"Figure 9c auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals by SR-2B2Q-VZ","processed_name":"AcceptanceofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379742?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379743?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-Wh) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t127","id":1543845,"location":"Figure 9d auxiliary material","messages":false,"name":"Acceptance of C1N2-Wh signals by SR-2B2Q-Vh","processed_name":"AcceptanceofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379745?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379746?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t128","id":1543846,"location":"Figure 10a auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals by SR-4Q-VV","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379748?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379749?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t129","id":1543847,"location":"Figure 10b auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379751?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379752?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-Zh) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t130","id":1543848,"location":"Figure 10c auxiliary material","messages":false,"name":"Acceptance of N2N3-Zh signals by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379754?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379755?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-hh) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v2/t131","id":1543849,"location":"Figure 10d auxiliary material","messages":false,"name":"Acceptance of N2N3-hh signals by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379757?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379758?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of the $(\\tilde{H},\\tilde{G})$ model by SR-4Q-VV, evaluated using MC simulation. The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v2/t132","id":1543850,"location":"Figure 11a auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals by SR-4Q-VV","processed_name":"Acceptanceof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379760?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379761?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-VZ, evaluated using MC simulation. The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v2/t133","id":1543851,"location":"Figure 11b auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals by SR-2B2Q-VZ","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379763?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379764?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-Vh, evaluated using MC simulation. The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v2/t134","id":1543852,"location":"Figure 11c auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals by SR-2B2Q-Vh","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379766?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379767?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1C1-WW) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t135","id":1543853,"location":"Figure 12a auxiliary material","messages":false,"name":"Efficiency of C1C1-WW signals by SR-4Q-VV","processed_name":"EfficiencyofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379769?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379770?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t136","id":1543854,"location":"Figure 12b auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals by SR-4Q-VV","processed_name":"EfficiencyofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379772?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379773?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t137","id":1543855,"location":"Figure 12c auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals by SR-2B2Q-VZ","processed_name":"EfficiencyofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379775?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379776?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-Wh) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t138","id":1543856,"location":"Figure 12d auxiliary material","messages":false,"name":"Efficiency of C1N2-Wh signals by SR-2B2Q-Vh","processed_name":"EfficiencyofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379778?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379779?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t139","id":1543857,"location":"Figure 13a auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals by SR-4Q-VV","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379781?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379782?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t140","id":1543858,"location":"Figure 13b auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379784?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379785?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-Zh) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t141","id":1543859,"location":"Figure 13c auxiliary material","messages":false,"name":"Efficiency of N2N3-Zh signals by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379787?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379788?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-hh) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v2/t142","id":1543860,"location":"Figure 13d auxiliary material","messages":false,"name":"Efficiency of N2N3-hh signals by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379790?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379791?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ in SR-4Q-VV. The efficiency in a given SR is defined by the ratio of weighted events selected...","doi":"10.17182/hepdata.104458.v2/t143","id":1543861,"location":"Figure 14a auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals by SR-4Q-VV","processed_name":"Efficiencyof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379793?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379794?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ in SR-2B2Q-VZ. The efficiency in a given SR is defined by the ratio of weighted events selected...","doi":"10.17182/hepdata.104458.v2/t144","id":1543862,"location":"Figure 14b auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals by SR-2B2Q-VZ","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379796?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379797?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ in SR-2B2Q-Vh. The efficiency in a given SR is defined by the ratio of weighted events selected...","doi":"10.17182/hepdata.104458.v2/t145","id":1543863,"location":"Figure 14c auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals by SR-2B2Q-Vh","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3379799?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3379800?landing_page=true"}]}],"mode":"record","participant_count":3,"recid":104458,"record":{"abstract":"A search for charginos and neutralinos at the Large Hadron Collider is reported using fully hadronic final states and missing transverse momentum. Pair-produced charginos or neutralinos are explored, each decaying into a high-$p_{\\text{T}}$ Standard Model weak boson. Fully-hadronic final states are studied to exploit the advantage of the large branching ratio, and the efficient background rejection by identifying the high-$p_{\\text{T}}$ bosons using large-radius jets and jet substructure information. An integrated luminosity of 139 fb$^{-1}$ of proton-proton collision data collected by the ATLAS detector at a center-of-mass energy of 13 TeV is used. No significant excess is found beyond the Standard Model expectation. The 95% confidence level exclusion limits are set on wino or higgsino production with varying assumptions in the decay branching ratios and the type of the lightest supersymmetric particle. A wino (higgsino) mass up to 1060 (900) GeV is excluded when the lightest SUSY particle mass is below 400 (240) GeV and the mass splitting is larger than 400 (450) GeV. The sensitivity to high-mass wino and higgsino is significantly extended compared with the previous LHC searches using the other final states.","access_urls":{"links":{"csv":"https://www.hepdata.net/download/submission/ins1906174/3/csv","json":"https://www.hepdata.net/download/submission/ins1906174/3/json","root":"https://www.hepdata.net/download/submission/ins1906174/3/root","yaml":"https://www.hepdata.net/download/submission/ins1906174/3/yaml","yoda":"https://www.hepdata.net/download/submission/ins1906174/3/yoda"}},"analyses":[{"analysis":"https://www.hepdata.net/record/resource/3458718?landing_page=true","filename":"FullLikelihood_forHEPData.tar","type":"HistFactory"},{"analysis":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41","type":"SModelS"}],"arxiv_id":"arXiv:2108.07586","collaborations":["ATLAS"],"control_number":"104458","creation_date":"2021-08-17","data_abstract":"","doc_type":"publication","doi":"10.1103/PhysRevD.104.112010","first_author":{"affiliation":"Marseille, CPPM","full_name":"Aad, Georges"},"hepdata_doi":"10.17182/hepdata.104458.v2","id":104458,"inspire_id":"1906174","journal_info":"Phys.Rev.D 104 (2021) 112010","keywords":[{"schema":"INSPIRE","value":"p p: colliding beams"},{"schema":"INSPIRE","value":"transverse momentum: missing-energy"},{"schema":"INSPIRE","value":"p p: scattering"},{"schema":"INSPIRE","value":"final state: hadronic"},{"schema":"INSPIRE","value":"final state: ((n)jet)"},{"schema":"INSPIRE","value":"neutralino: pair production"},{"schema":"INSPIRE","value":"chargino: pair production"},{"schema":"INSPIRE","value":"sparticle: branching ratio"},{"schema":"INSPIRE","value":"CERN LHC Coll"},{"schema":"INSPIRE","value":"ATLAS"},{"schema":"INSPIRE","value":"sparticle: pair production"},{"schema":"INSPIRE","value":"new physics: search for"},{"schema":"INSPIRE","value":"sensitivity"},{"schema":"INSPIRE","value":"vector boson: hadronic decay"},{"schema":"INSPIRE","value":"mass difference"},{"schema":"INSPIRE","value":"supersymmetry"},{"schema":"INSPIRE","value":"background"},{"schema":"INSPIRE","value":"structure"},{"schema":"INSPIRE","value":"track data analysis: jet"},{"schema":"INSPIRE","value":"channel cross section: upper limit"},{"schema":"INSPIRE","value":"chargino: mass: lower limit"},{"schema":"INSPIRE","value":"neutralino: mass: lower limit"},{"schema":"INSPIRE","value":"Higgsino: mass"},{"schema":"INSPIRE","value":"experimental results"},{"schema":"INSPIRE","value":"13000 GeV-cms"},{"schema":"PDG","value":"S046PHA"},{"schema":"PDG","value":"S046WNO"}],"last_updated":"Thu, 31 Aug 2023 13:32:42 GMT","parent_child_join":{"name":"parent_publication"},"publication_date":"2021-11-01T00:00:00","recid":104458,"resources":[{"description":"Webpage with all figures and tables","type":"html","url":"https://atlas.web.cern.ch/Atlas/GROUPS/PHYSICS/PAPERS/SUSY-2018-41/"},{"description":"Analysis code at truth label using SimpleAnalysis framework without boson tagging efficiency due to lack of jet substructure variables","type":"C++","url":"https://www.hepdata.net/record/resource/3458710?landing_page=true"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458711?landing_page=true"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458712?landing_page=true"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458713?landing_page=true"},{"description":"SHLA file for GGM-Higgsino model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458714?landing_page=true"},{"description":"SHLA file for N2N3-ZZ hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458715?landing_page=true"},{"description":"SHLA file for N2N3-Zh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458716?landing_page=true"},{"description":"SHLA file for N2N3-hh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458717?landing_page=true"},{"description":"HistFactory likelihoods JSON files","type":"HistFactory","url":"https://www.hepdata.net/record/resource/3458718?landing_page=true"},{"description":null,"type":"SModelS","url":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41"}],"subject_area":["hep-ex"],"summary_authors":[{"affiliation":"Marseille, CPPM","full_name":"Aad, Georges"},{"affiliation":"Oklahoma U.","full_name":"Abbott, Braden Keim"},{"affiliation":"Massachusetts U., Amherst","full_name":"Abbott, Dale"},{"affiliation":"CERN","full_name":"Abed Abud, Adam"},{"affiliation":"Gottingen U., II. Phys. Inst.","full_name":"Abeling, Kira"},{"affiliation":"Royal Holloway, U. of London","full_name":"Abhayasinghe, Deshan Kavishka"},{"affiliation":"Brookhaven","full_name":"Abidi, Haider"},{"affiliation":"Tel Aviv U.","full_name":"Abramowicz, Halina"},{"affiliation":"Technion","full_name":"Abreu, Henso"},{"affiliation":"Argonne","full_name":"Abulaiti, Yiming"}],"title":"Search for charginos and neutralinos in final states with two boosted hadronically decaying bosons and missing transverse momentum in $pp$ collisions at $\\sqrt{s}=13$ TeV with the ATLAS detector","type":["article"],"uuid":"e06d0d13-c307-4ff4-a790-2e4295172b59","version":3,"year":"2021"},"record_type":"publication","related_recids":[],"related_to_this_recids":[],"resources_with_doi":[{"description":"Analysis code at truth label using SimpleAnalysis framework without boson tagging efficiency due to lack of jet substructure variables","doi":"10.17182/hepdata.104458.v2/r1","filename":"ANA-SUSY-2018-41.cxx"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","doi":"10.17182/hepdata.104458.v2/r2","filename":"susy_params_C1C1_WW_700_100.slha"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","doi":"10.17182/hepdata.104458.v2/r3","filename":"susy_params_C1N2_WZ_900_100.slha"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","doi":"10.17182/hepdata.104458.v2/r4","filename":"susy_params_C1N2_Wh_900_100.slha"},{"description":"SHLA file for GGM-Higgsino model","doi":"10.17182/hepdata.104458.v2/r5","filename":"susy_params_GGMHino_C1N2N1_800.slha"},{"description":"SHLA file for N2N3-ZZ hinoBino simplified model","doi":"10.17182/hepdata.104458.v2/r6","filename":"susy_params_N2N3_ZZ_800_100.slha"},{"description":"SHLA file for N2N3-Zh hinoBino simplified model","doi":"10.17182/hepdata.104458.v2/r7","filename":"susy_params_N2N3_Zh_800_100.slha"},{"description":"SHLA file for N2N3-hh hinoBino simplified model","doi":"10.17182/hepdata.104458.v2/r8","filename":"susy_params_N2N3_hh_800_100.slha"},{"description":"HistFactory likelihoods JSON files","doi":"10.17182/hepdata.104458.v2/r9","filename":"FullLikelihood_forHEPData.tar"}],"reviewers_notified":false,"revision_message":{"message":"Added SimpleAnalysis code and likelihoods in the Additional Resources","version":2},"site_url":"https://www.hepdata.net","status":"finished","table_id_to_show":1543719,"table_name_to_show":"Table of contents","version":2,"version_count":3,"watched":false} diff --git a/workflows/tests/data_records/ins1906174_version3.json b/workflows/tests/data_records/ins1906174_version3.json new file mode 100644 index 000000000..a7ba7173a --- /dev/null +++ b/workflows/tests/data_records/ins1906174_version3.json @@ -0,0 +1,7 @@ +{"access_count":{"sum":13375},"additional_resources":true,"breadcrumb_text":"Aad, Georges et al.","coordinator":40,"data_tables":[{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Table of contents/csv","json":"https://www.hepdata.net/download/table/ins1906174/Table of contents/json","root":"https://www.hepdata.net/download/table/ins1906174/Table of contents/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Table of contents/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Table of contents/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Table of contents/yoda1"},"description":"- - - - - - - - Overview of HEPData Record - - - - - - - -...","doi":"10.17182/hepdata.104458.v3/t1","id":1583811,"location":null,"messages":false,"name":"Table of contents","processed_name":"Tableofcontents","resources":[]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/csv","json":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/json","root":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Cut flows for the representative signals/yoda1"},"description":"Cut flows of some representative signals up to SR-4Q-VV, SR-2B2Q-VZ, and SR-2B2Q-Vh. One signal point from the $(\\tilde{W},~\\tilde{B})$ simplified models...","doi":"10.17182/hepdata.104458.v3/t2","id":1583812,"location":"Table 1 auxiliary material","messages":false,"name":"Cut flows for the representative signals","processed_name":"Cutflowsfortherepresentativesignals","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458721?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458722?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging efficiency/yoda1"},"description":"The boson-tagging efficiency for jets arising from $W/Z$ bosons decaying into $q\\bar{q}$ (signal jets) are shown. The signal jet efficiency...","doi":"10.17182/hepdata.104458.v3/t3","id":1583813,"location":"Figure 4a","messages":false,"name":"$W/Z\\rightarrow qq$ tagging efficiency","processed_name":"$W/Z\\rightarrowqq$taggingefficiency","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458724?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458725?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W/Z%5Crightarrow qq$ tagging rejection/yoda1"},"description":"The rejection factor (inverse of the efficiency) for jets that have the other origins (background jets) are shown. The background...","doi":"10.17182/hepdata.104458.v3/t4","id":1583814,"location":"Figure 4b","messages":false,"name":"$W/Z\\rightarrow qq$ tagging rejection","processed_name":"$W/Z\\rightarrowqq$taggingrejection","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458727?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458728?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging efficiency/yoda1"},"description":"The boson-tagging efficiency for jets arising from $Z/h$ bosons decaying into $b\\bar{b}$ (signal jets). The signal jet efficiency of $Z_{bb}$/$h_{bb}$-tagging...","doi":"10.17182/hepdata.104458.v3/t5","id":1583815,"location":"Figure 4c","messages":false,"name":"$Z/h \\rightarrow bb$ tagging efficiency","processed_name":"$Z/h\\rightarrowbb$taggingefficiency","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458730?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458731?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z/h %5Crightarrow bb$ tagging rejection/yoda1"},"description":"The rejection factor (inverse of the efficiency) for jets that have the other origins (background jets) are shown. The background...","doi":"10.17182/hepdata.104458.v3/t6","id":1583816,"location":"Figure 4d","messages":false,"name":"$Z/h \\rightarrow bb$ tagging rejection","processed_name":"$Z/h\\rightarrowbb$taggingrejection","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458733?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458734?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v3/t7","id":1583817,"location":"Figure 1a auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging efficiency (vs official WP)","processed_name":"$W\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458736?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458737?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$W%5Crightarrow qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v3/t8","id":1583818,"location":"Figure 1c auxiliary material","messages":false,"name":"$W\\rightarrow qq$ tagging rejection (vs official WP)","processed_name":"$W\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458739?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458740?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging efficiency (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v3/t9","id":1583819,"location":"Figure 1b auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging efficiency (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingefficiency(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458742?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458743?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/csv","json":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/json","root":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$Z%5Crightarrow qq$ tagging rejection (vs official WP)/yoda1"},"description":"The signal jet efficiency and background jet rejection for the $W_{qq}$-/$Z_{qq}$-tagging working point used in the analysis in comparison with...","doi":"10.17182/hepdata.104458.v3/t10","id":1583820,"location":"Figure 1d auxiliary material","messages":false,"name":"$Z\\rightarrow qq$ tagging rejection (vs official WP)","processed_name":"$Z\\rightarrowqq$taggingrejection(vsofficialWP)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458745?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458746?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/csv","json":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/json","root":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Total systematic uncertainties/yoda1"},"description":"The total post-fit uncertainty in each of the SRs and VRs.","doi":"10.17182/hepdata.104458.v3/t11","id":1583821,"location":"Figure 9","messages":false,"name":"Total systematic uncertainties","processed_name":"Totalsystematicuncertainties","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458748?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458749?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/json","root":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data yields and background expectation in the SRs/yoda1"},"description":"Summary of the observed data and predicted SM background in all SRs. The background prediction in SR-4Q (SR-2B2Q) is obtained...","doi":"10.17182/hepdata.104458.v3/t12","id":1583822,"location":"Figure 10","messages":false,"name":"Data yields and background expectation in the SRs","processed_name":"DatayieldsandbackgroundexpectationintheSRs","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458751?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458752?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/json","root":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in SR/yoda1"},"description":"Number of observed data events and the SM backgrounds in the SRs and the CR0L bins. The SM backgrounds are...","doi":"10.17182/hepdata.104458.v3/t13","id":1583823,"location":"Table 5","messages":false,"name":"Data yields and background breakdown in SR","processed_name":"DatayieldsandbackgroundbreakdowninSR","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458754?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458755?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/json","root":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Data yields and background breakdown in CR/VR 1L(1Y)/yoda1"},"description":"Number of observed data events and the post-fit SM background prediction in the VR1L(1Y) bins and the corresponding CR1L(1Y) bins....","doi":"10.17182/hepdata.104458.v3/t14","id":1583824,"location":"Table 4","messages":false,"name":"Data yields and background breakdown in CR/VR 1L(1Y)","processed_name":"DatayieldsandbackgroundbreakdowninCR/VR1L(1Y)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458757?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458758?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-4Q-VV/yoda1"},"description":"$m_{\\textrm{eff}}$ distribution in SR-4Q-VV. The post-fit SM background expectation using the background-only fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v3/t15","id":1583825,"location":"Figure 11a","messages":false,"name":"Effective mass distribution in SR-4Q-VV","processed_name":"EffectivemassdistributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458760?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458761?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $m(J_{1})$ in SR-4Q-VV. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v3/t16","id":1583826,"location":"Figure 2a auxiliary material","messages":false,"name":"Leading large-$R$ jet mass distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458763?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458764?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $D_2(J_{1})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v3/t17","id":1583827,"location":"Figure 2b auxiliary material","messages":false,"name":"Leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV","processed_name":"Leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458766?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458767?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet mass distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $m(J_{2})$ in SR-4Q-VV. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v3/t18","id":1583828,"location":"Figure 2c auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet mass distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jetmassdistributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458769?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458770?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV/yoda1"},"description":"Distribution of $D_2(J_{2})$ in SR-4Q-VV. For $D_2$, the cut value applied for $V_{qq}$-tagging ($D_{2,\\text{cut}}$) is subtracted as the off-set so...","doi":"10.17182/hepdata.104458.v3/t19","id":1583829,"location":"Figure 2d auxiliary material","messages":false,"name":"Sub-leading large-$R$ jet $D_{2}$ distribution in SR-4Q-VV","processed_name":"Sub-leadinglarge-$R$jet$D_{2}$distributioninSR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458772?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458773?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-VZ/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v3/t20","id":1583830,"location":"Figure 11b","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-VZ","processed_name":"$m_{T2}$distributioninSR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458775?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458776?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of $m(J_{bb})$ in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v3/t21","id":1583831,"location":"Figure 3a auxiliary material","messages":false,"name":"bb-tagged jet mass distribution in SR-2B2Q-VZ","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458778?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458779?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-VZ/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} $ in SR-2B2Q-VZ. The post-fit SM background expectation using the background-only fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v3/t22","id":1583832,"location":"Figure 3c auxiliary material","messages":false,"name":"Effective mass distribution in SR-2B2Q-VZ","processed_name":"EffectivemassdistributioninSR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458781?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458782?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/$m_{T2}$ distribution in SR-2B2Q-Vh/yoda1"},"description":"$m_{\\textrm{T2}}$ distributions in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only fit is shown in a histogram stack. Distributions...","doi":"10.17182/hepdata.104458.v3/t23","id":1583833,"location":"Figure 11c","messages":false,"name":"$m_{T2}$ distribution in SR-2B2Q-Vh","processed_name":"$m_{T2}$distributioninSR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458784?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458785?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/bb-tagged jet mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of $m(J_{bb})$ in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only fit is shown in a histogram stack....","doi":"10.17182/hepdata.104458.v3/t24","id":1583834,"location":"Figure 3b auxiliary material","messages":false,"name":"bb-tagged jet mass distribution in SR-2B2Q-Vh","processed_name":"bb-taggedjetmassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458787?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458788?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Effective mass distribution in SR-2B2Q-Vh/yoda1"},"description":"Distribution of $m_{\\textrm{eff}} $ in SR-2B2Q-Vh. The post-fit SM background expectation using the background-only fit is shown in a histogram...","doi":"10.17182/hepdata.104458.v3/t25","id":1583835,"location":"Figure 3d auxiliary material","messages":false,"name":"Effective mass distribution in SR-2B2Q-Vh","processed_name":"EffectivemassdistributioninSR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458790?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458791?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t26","id":1583836,"location":"Figure 15a","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458793?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458794?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t27","id":1583837,"location":"Figure 15a","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model (C1C1-WW)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458796?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458797?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t28","id":1583838,"location":"Figure 15a","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458799?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458800?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t29","id":1583839,"location":"Figure 15a","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458802?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458803?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t30","id":1583840,"location":"Figure 15a","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model (C1C1-WW)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1C1-WW)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458805?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458806?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t31","id":1583841,"location":"Figure 15b","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458808?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458809?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t32","id":1583842,"location":"Figure 15b","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458811?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458812?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t33","id":1583843,"location":"Figure 15b","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458814?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458815?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t34","id":1583844,"location":"Figure 15b","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458817?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458818?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t35","id":1583845,"location":"Figure 15b","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458820?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458821?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t36","id":1583846,"location":"Figure 15b","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model (C1N2-WZ)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-WZ)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458823?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458824?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t37","id":1583847,"location":"Figure 15c","messages":false,"name":"Exp limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458826?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458827?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t38","id":1583848,"location":"Figure 15c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458829?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458830?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t39","id":1583849,"location":"Figure 15c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Explimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458832?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458833?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t40","id":1583850,"location":"Figure 15c","messages":false,"name":"Obs limit on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimiton(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458835?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458836?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t41","id":1583851,"location":"Figure 15c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimit(+1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458838?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458839?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)/yoda1"},"description":"Exclusion limits for $(\\tilde{W},\\tilde{B})$ simplifiec model as a function of the produced wino mass ($m(\\tilde{\\chi}_{1}^{\\pm}/\\tilde{\\chi}_{2}^{0})$) and the bino LSP mass...","doi":"10.17182/hepdata.104458.v3/t42","id":1583852,"location":"Figure 15c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) simplified model (C1N2-Wh)","processed_name":"Obslimit(-1sig)on(W~,B~)simplifiedmodel(C1N2-Wh)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458841?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458842?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t43","id":1583853,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458844?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458845?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 0%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t44","id":1583854,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 0%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=0%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458847?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458848?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t45","id":1583855,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458850?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458851?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 25%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t46","id":1583856,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 25%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=25%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458853?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458854?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t47","id":1583857,"location":"Figure 12a,12c","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458856?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458857?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t48","id":1583858,"location":"Figure 12c","messages":false,"name":"Exp limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458859?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458860?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t49","id":1583859,"location":"Figure 12c","messages":false,"name":"Exp limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458862?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458863?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t50","id":1583860,"location":"Figure 12b,12c","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458865?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458866?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t51","id":1583861,"location":"Figure 12c","messages":false,"name":"Obs limit (+1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458868?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458869?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t52","id":1583862,"location":"Figure 12c","messages":false,"name":"Obs limit (-1sig) on (W~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(W~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458871?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458872?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t53","id":1583863,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458874?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458875?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 75%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t54","id":1583864,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 75%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458877?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458878?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t55","id":1583865,"location":"Figure 12a","messages":false,"name":"Exp limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Explimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458880?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458881?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, B~) B(N2->ZN1) = 100%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t56","id":1583866,"location":"Figure 12b","messages":false,"name":"Obs limit on (W~, B~) B(N2->ZN1) = 100%","processed_name":"Obslimiton(W~,B~)B(N2->ZN1)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458883?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458884?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t57","id":1583867,"location":"Figure 12a,12d","messages":false,"name":"Exp limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458886?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458887?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t58","id":1583868,"location":"Figure 12d","messages":false,"name":"Exp limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Explimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458889?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458890?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{W},\\tilde{B})$ and $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and...","doi":"10.17182/hepdata.104458.v3/t59","id":1583869,"location":"Figure 12b,12d","messages":false,"name":"Obs limit on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimiton(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458892?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458893?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t60","id":1583870,"location":"Figure 12d","messages":false,"name":"Obs limit (+1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(+1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458895?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458896?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%25/yoda1"},"description":"Exclusion limits for the $(\\tilde{H},\\tilde{B})$ models shown as a function of the mass of wino/higgsino chargino ($m(\\tilde{\\chi}_{1}^{\\pm})$) and the mass...","doi":"10.17182/hepdata.104458.v3/t61","id":1583871,"location":"Figure 12d","messages":false,"name":"Obs limit (-1sig) on (H~, B~) B(N2->ZN1) = 50%","processed_name":"Obslimit(-1sig)on(H~,B~)B(N2->ZN1)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458898?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458899?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t62","id":1583872,"location":"Figure 14c","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, mu>0","processed_name":"Explimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458901?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458902?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t63","id":1583873,"location":"Figure 14c","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458904?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458905?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t64","id":1583874,"location":"Figure 14c","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458907?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458908?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t65","id":1583875,"location":"Figure 14c","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimiton(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458910?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458911?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t66","id":1583876,"location":"Figure 14c","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458913?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458914?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t67","id":1583877,"location":"Figure 14c","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458916?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458917?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t68","id":1583878,"location":"Figure 14d","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, mu>0","processed_name":"Explimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458919?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458920?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t69","id":1583879,"location":"Figure 14d","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458922?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458923?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t70","id":1583880,"location":"Figure 14d","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimiton(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458925?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458926?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t71","id":1583881,"location":"Figure 14d","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458928?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458929?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane of the physical...","doi":"10.17182/hepdata.104458.v3/t72","id":1583882,"location":"Figure 14d","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, mu>0","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458931?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458932?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t73","id":1583883,"location":"Figure 14b","messages":false,"name":"Exp limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458934?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458935?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t74","id":1583884,"location":"Figure 14a","messages":false,"name":"Exp limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458937?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458938?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t75","id":1583885,"location":"Figure 14a","messages":false,"name":"Exp limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Explimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458940?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458941?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t76","id":1583886,"location":"Figure 14b","messages":false,"name":"Obs limit on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458943?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458944?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t77","id":1583887,"location":"Figure 14a","messages":false,"name":"Obs limit (+1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimit(+1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458946?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458947?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{W},\\tilde{H})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t78","id":1583888,"location":"Figure 14a","messages":false,"name":"Obs limit (-1sig) on (W~, H~), tanb = 10, M2 vs mu","processed_name":"Obslimit(-1sig)on(W~,H~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458949?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458950?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t79","id":1583889,"location":"Figure 14b","messages":false,"name":"Exp limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Explimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458952?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458953?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t80","id":1583890,"location":"Figure 14a","messages":false,"name":"Exp limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Explimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458955?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458956?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t81","id":1583891,"location":"Figure 14b","messages":false,"name":"Obs limit on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimiton(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458958?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458959?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t82","id":1583892,"location":"Figure 14a","messages":false,"name":"Obs limit (+1sig) on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimit(+1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458961?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458962?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{W})$ models. The limits are projected on to a two-dimensional plane as a function...","doi":"10.17182/hepdata.104458.v3/t83","id":1583893,"location":"Figure 14a","messages":false,"name":"Obs limit (-1sig) on (H~, W~), tanb = 10, M2 vs mu","processed_name":"Obslimit(-1sig)on(H~,W~),tanb=10,M2vsmu","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458964?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458965?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t84","id":1583894,"location":"Figure 16","messages":false,"name":"Exp limit on (H~, G~)","processed_name":"Explimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458967?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458968?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t85","id":1583895,"location":"Figure 16","messages":false,"name":"Exp limit (+1sig) on (H~, G~)","processed_name":"Explimit(+1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458970?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458971?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t86","id":1583896,"location":"Figure 16","messages":false,"name":"Exp limit (-1sig) on (H~, G~)","processed_name":"Explimit(-1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458973?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458974?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t87","id":1583897,"location":"Figure 16","messages":false,"name":"Obs limit on (H~, G~)","processed_name":"Obslimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458976?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458977?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t88","id":1583898,"location":"Figure 16","messages":false,"name":"Obs limit (+1sig) on (H~, G~)","processed_name":"Obslimit(+1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458979?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458980?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid red) 95% CL exclusion limit derived for the $(\\tilde{H},\\tilde{G})$ model, as a function of the...","doi":"10.17182/hepdata.104458.v3/t89","id":1583899,"location":"Figure 16","messages":false,"name":"Obs limit (-1sig) on (H~, G~)","processed_name":"Obslimit(-1sig)on(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458982?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458983?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t90","id":1583900,"location":"Figure 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458985?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458986?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t91","id":1583901,"location":"Figure 17a","messages":false,"name":"Exp limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458988?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458989?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t92","id":1583902,"location":"Figure 17a","messages":false,"name":"Exp limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Explimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458991?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458992?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t93","id":1583903,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458994?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458995?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t94","id":1583904,"location":"Figure 17a","messages":false,"name":"Obs limit (+1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(+1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3458997?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3458998?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t95","id":1583905,"location":"Figure 17a","messages":false,"name":"Obs limit (-1sig) on (H~, a~) B(N1->Za~) = 100%","processed_name":"Obslimit(-1sig)on(H~,a~)B(N1->Za~)=100%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459000?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459001?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t96","id":1583906,"location":"Figure 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459003?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459004?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 75%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t97","id":1583907,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 75%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=75%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459006?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459007?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Exp limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t98","id":1583908,"location":"Figure 17b","messages":false,"name":"Exp limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Explimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459009?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459010?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 50%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t99","id":1583909,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 50%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=50%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459012?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459013?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/csv","json":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/json","root":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Obs limit on (H~, a~) B(N1->Za~) = 25%25/yoda1"},"description":"95% CL exclusion limits for the $(\\tilde{H},\\tilde{a})$ model as the function of axino mass ($m(\\tilde{a})$) and the lightest higgsino ($m(\\tilde{\\chi}_{1}^{0})$)....","doi":"10.17182/hepdata.104458.v3/t100","id":1583910,"location":"Figure 17b","messages":false,"name":"Obs limit on (H~, a~) B(N1->Za~) = 25%","processed_name":"Obslimiton(H~,a~)B(N1->Za~)=25%","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459015?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459016?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t101","id":1583911,"location":"Figure 4a auxiliary material","messages":false,"name":"B(C2->W+N1,N2) in (W~, H~), tanb=10, mu>0","processed_name":"B(C2->W+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459018?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459019?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t102","id":1583912,"location":"Figure 4c auxiliary material","messages":false,"name":"B(C2->Z+C1) in (W~, H~), tanb=10, mu>0","processed_name":"B(C2->Z+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459021?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459022?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t103","id":1583913,"location":"Figure 4e auxiliary material","messages":false,"name":"B(C2->h+C1) in (W~, H~), tanb=10, mu>0","processed_name":"B(C2->h+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459024?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459025?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t104","id":1583914,"location":"Figure 4b auxiliary material","messages":false,"name":"B(N3->W+C1) in (W~, H~), tanb=10, mu>0","processed_name":"B(N3->W+C1)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459027?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459028?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t105","id":1583915,"location":"Figure 4d auxiliary material","messages":false,"name":"B(N3->Z+N1,N2) in (W~, H~), tanb=10, mu>0","processed_name":"B(N3->Z+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459030?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459031?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{W},\\tilde{H})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of wino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and wino-like neutralino...","doi":"10.17182/hepdata.104458.v3/t106","id":1583916,"location":"Figure 4f auxiliary material","messages":false,"name":"B(N3->h+N1,N2) in (W~, H~), tanb=10, mu>0","processed_name":"B(N3->h+N1,N2)in(W~,H~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459033?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459034?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->W+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t107","id":1583917,"location":"Figure 5a auxiliary material","messages":false,"name":"B(C2->W+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(C2->W+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459036?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459037?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->Z+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t108","id":1583918,"location":"Figure 5b auxiliary material","messages":false,"name":"B(C2->Z+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(C2->Z+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459039?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459040?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(C2->h+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t109","id":1583919,"location":"Figure 5c auxiliary material","messages":false,"name":"B(C2->h+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(C2->h+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459042?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459043?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->W+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t110","id":1583920,"location":"Figure 5d auxiliary material","messages":false,"name":"B(N2->W+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N2->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459045?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459046?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->Z+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t111","id":1583921,"location":"Figure 5e auxiliary material","messages":false,"name":"B(N2->Z+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N2->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459048?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459049?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N2->h+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t112","id":1583922,"location":"Figure 5f auxiliary material","messages":false,"name":"B(N2->h+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N2->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459051?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459052?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->W+C1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t113","id":1583923,"location":"Figure 5g auxiliary material","messages":false,"name":"B(N3->W+C1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N3->W+C1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459054?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459055?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->Z+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t114","id":1583924,"location":"Figure 5h auxiliary material","messages":false,"name":"B(N3->Z+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N3->Z+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459057?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459058?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/csv","json":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/json","root":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/root","yaml":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/B(N3->h+N1) in (H~, W~), tanb=10, mu>0/yoda1"},"description":"The $\\tilde{\\chi}_{\\textrm{heavy}}$ branching ratios in the $(\\tilde{H},\\tilde{W})$ model ($\\tan\\beta=10, \\mu>0$). The branching ratios of higgsino-like chargino ($\\tilde{\\chi}_{2}^{\\pm}$) and higgsino-like neutralinos...","doi":"10.17182/hepdata.104458.v3/t115","id":1583925,"location":"Figure 5i auxiliary material","messages":false,"name":"B(N3->h+N1) in (H~, W~), tanb=10, mu>0","processed_name":"B(N3->h+N1)in(H~,W~),tanb=10,mu>0","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459060?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459061?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v3/t116","id":1583926,"location":"Figure 7a auxiliary material","messages":false,"name":"Expected cross-section upper limit on C1C1-WW","processed_name":"Expectedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459063?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459064?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v3/t117","id":1583927,"location":"Figure 7b auxiliary material","messages":false,"name":"Expected cross-section upper limit on C1N2-WZ","processed_name":"Expectedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459066?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459067?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh). The black numbers represents the expected cross-section...","doi":"10.17182/hepdata.104458.v3/t118","id":1583928,"location":"Figure 7c auxiliary material","messages":false,"name":"Expected cross-section upper limit on C1N2-Wh","processed_name":"Expectedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459069?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459070?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Expected cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ models. The black numbers represents the expected cross-section upper-limits.","doi":"10.17182/hepdata.104458.v3/t119","id":1583929,"location":"Figure 7d auxiliary material","messages":false,"name":"Expected cross-section upper limit on (H~, G~)","processed_name":"Expectedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459072?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459073?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1C1-WW/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v3/t120","id":1583930,"location":"Figure 8a auxiliary material","messages":false,"name":"Observed cross-section upper limit on C1C1-WW","processed_name":"Observedcross-sectionupperlimitonC1C1-WW","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459075?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459076?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-WZ/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v3/t121","id":1583931,"location":"Figure 8b auxiliary material","messages":false,"name":"Observed cross-section upper limit on C1N2-WZ","processed_name":"Observedcross-sectionupperlimitonC1N2-WZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459078?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459079?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on C1N2-Wh/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh). The black numbers represents the observed cross-section...","doi":"10.17182/hepdata.104458.v3/t122","id":1583932,"location":"Figure 8c auxiliary material","messages":false,"name":"Observed cross-section upper limit on C1N2-Wh","processed_name":"Observedcross-sectionupperlimitonC1N2-Wh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459081?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459082?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/csv","json":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/json","root":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Observed cross-section upper limit on (H~, G~)/yoda1"},"description":"Expected (dashed) and observed (solid) 95% CL exclusion limits on $(\\tilde{H},\\tilde{G})$ models. The black numbers represents the observed cross-section upper-limits.","doi":"10.17182/hepdata.104458.v3/t123","id":1583933,"location":"Figure 8d auxiliary material","messages":false,"name":"Observed cross-section upper limit on (H~, G~)","processed_name":"Observedcross-sectionupperlimiton(H~,G~)","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459084?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459085?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1C1-WW) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t124","id":1583934,"location":"Figure 9a auxiliary material","messages":false,"name":"Acceptance of C1C1-WW signals by SR-4Q-VV","processed_name":"AcceptanceofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459087?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459088?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t125","id":1583935,"location":"Figure 9b auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals by SR-4Q-VV","processed_name":"AcceptanceofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459090?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459091?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t126","id":1583936,"location":"Figure 9c auxiliary material","messages":false,"name":"Acceptance of C1N2-WZ signals by SR-2B2Q-VZ","processed_name":"AcceptanceofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459093?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459094?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-Wh) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t127","id":1583937,"location":"Figure 9d auxiliary material","messages":false,"name":"Acceptance of C1N2-Wh signals by SR-2B2Q-Vh","processed_name":"AcceptanceofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459096?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459097?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t128","id":1583938,"location":"Figure 10a auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals by SR-4Q-VV","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459099?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459100?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t129","id":1583939,"location":"Figure 10b auxiliary material","messages":false,"name":"Acceptance of N2N3-ZZ signals by SR-2B2Q-VZ","processed_name":"AcceptanceofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459102?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459103?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-Zh) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t130","id":1583940,"location":"Figure 10c auxiliary material","messages":false,"name":"Acceptance of N2N3-Zh signals by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459105?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459106?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-hh) by their most relevant SRs, evaluated using MC simulation. The acceptance is given...","doi":"10.17182/hepdata.104458.v3/t131","id":1583941,"location":"Figure 10d auxiliary material","messages":false,"name":"Acceptance of N2N3-hh signals by SR-2B2Q-Vh","processed_name":"AcceptanceofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459108?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459109?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Signal acceptance of the $(\\tilde{H},\\tilde{G})$ model by SR-4Q-VV, evaluated using MC simulation. The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v3/t132","id":1583942,"location":"Figure 11a auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals by SR-4Q-VV","processed_name":"Acceptanceof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459111?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459112?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Signal acceptance of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-VZ, evaluated using MC simulation. The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v3/t133","id":1583943,"location":"Figure 11b auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals by SR-2B2Q-VZ","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459114?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459115?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Acceptance of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Signal acceptance of the $(\\tilde{H},\\tilde{G})$ model by SR-2B2Q-Vh, evaluated using MC simulation. The acceptance is given by the ratio of...","doi":"10.17182/hepdata.104458.v3/t134","id":1583944,"location":"Figure 11c auxiliary material","messages":false,"name":"Acceptance of (H~, G~) signals by SR-2B2Q-Vh","processed_name":"Acceptanceof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459117?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459118?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1C1-WW signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1C1-WW) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t135","id":1583945,"location":"Figure 12a auxiliary material","messages":false,"name":"Efficiency of C1C1-WW signals by SR-4Q-VV","processed_name":"EfficiencyofC1C1-WWsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459120?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459121?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t136","id":1583946,"location":"Figure 12b auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals by SR-4Q-VV","processed_name":"EfficiencyofC1N2-WZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459123?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459124?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-WZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-WZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t137","id":1583947,"location":"Figure 12c auxiliary material","messages":false,"name":"Efficiency of C1N2-WZ signals by SR-2B2Q-VZ","processed_name":"EfficiencyofC1N2-WZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459126?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459127?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of C1N2-Wh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{W},\\tilde{B})$ simplified models (C1N2-Wh) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t138","id":1583948,"location":"Figure 12d auxiliary material","messages":false,"name":"Efficiency of C1N2-Wh signals by SR-2B2Q-Vh","processed_name":"EfficiencyofC1N2-WhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459129?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459130?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t139","id":1583949,"location":"Figure 13a auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals by SR-4Q-VV","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459132?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459133?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-ZZ) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t140","id":1583950,"location":"Figure 13b auxiliary material","messages":false,"name":"Efficiency of N2N3-ZZ signals by SR-2B2Q-VZ","processed_name":"EfficiencyofN2N3-ZZsignalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459135?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459136?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-Zh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-Zh) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t141","id":1583951,"location":"Figure 13c auxiliary material","messages":false,"name":"Efficiency of N2N3-Zh signals by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-ZhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459138?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459139?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of N2N3-hh signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{B})$ simplified models (N2N3-hh) in their most relevant SRs. The efficiency in a given SR is defined by...","doi":"10.17182/hepdata.104458.v3/t142","id":1583952,"location":"Figure 13d auxiliary material","messages":false,"name":"Efficiency of N2N3-hh signals by SR-2B2Q-Vh","processed_name":"EfficiencyofN2N3-hhsignalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459141?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459142?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-4Q-VV/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ in SR-4Q-VV. The efficiency in a given SR is defined by the ratio of weighted events selected...","doi":"10.17182/hepdata.104458.v3/t143","id":1583953,"location":"Figure 14a auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals by SR-4Q-VV","processed_name":"Efficiencyof(H~,G~)signalsbySR-4Q-VV","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459144?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459145?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-VZ/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ in SR-2B2Q-VZ. The efficiency in a given SR is defined by the ratio of weighted events selected...","doi":"10.17182/hepdata.104458.v3/t144","id":1583954,"location":"Figure 14b auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals by SR-2B2Q-VZ","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-VZ","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459147?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459148?landing_page=true"}]},{"data":{"csv":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/csv","json":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/json","root":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/root","yaml":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/yaml","yoda":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/yoda","yoda1":"https://www.hepdata.net/download/table/ins1906174/Efficiency of (H~, G~) signals by SR-2B2Q-Vh/yoda1"},"description":"Efficiency for $(\\tilde{H},\\tilde{G})$ in SR-2B2Q-Vh. The efficiency in a given SR is defined by the ratio of weighted events selected...","doi":"10.17182/hepdata.104458.v3/t145","id":1583955,"location":"Figure 14c auxiliary material","messages":false,"name":"Efficiency of (H~, G~) signals by SR-2B2Q-Vh","processed_name":"Efficiencyof(H~,G~)signalsbySR-2B2Q-Vh","resources":[{"description":"Image file","type":"png","url":"https://www.hepdata.net/record/resource/3459150?landing_page=true"},{"description":"Thumbnail image file","type":"png","url":"https://www.hepdata.net/record/resource/3459151?landing_page=true"}]}],"mode":"record","participant_count":3,"recid":104458,"record":{"data_keywords":{"cmenergies":[{"gte":13000.0,"lte":13000.0}],"observables":["m_MMC"],"phrases":["up-type quark coupling parameter","A Production","Higgs","Proton-Proton Scattering","2HDM","flavour-aligned 2HDM","Tau"]},"abstract":"A search for charginos and neutralinos at the Large Hadron Collider is reported using fully hadronic final states and missing transverse momentum. Pair-produced charginos or neutralinos are explored, each decaying into a high-$p_{\\text{T}}$ Standard Model weak boson. Fully-hadronic final states are studied to exploit the advantage of the large branching ratio, and the efficient background rejection by identifying the high-$p_{\\text{T}}$ bosons using large-radius jets and jet substructure information. An integrated luminosity of 139 fb$^{-1}$ of proton-proton collision data collected by the ATLAS detector at a center-of-mass energy of 13 TeV is used. No significant excess is found beyond the Standard Model expectation. The 95% confidence level exclusion limits are set on wino or higgsino production with varying assumptions in the decay branching ratios and the type of the lightest supersymmetric particle. A wino (higgsino) mass up to 1060 (900) GeV is excluded when the lightest SUSY particle mass is below 400 (240) GeV and the mass splitting is larger than 400 (450) GeV. The sensitivity to high-mass wino and higgsino is significantly extended compared with the previous LHC searches using the other final states.","access_urls":{"links":{"csv":"https://www.hepdata.net/download/submission/ins1906174/3/csv","json":"https://www.hepdata.net/download/submission/ins1906174/3/json","root":"https://www.hepdata.net/download/submission/ins1906174/3/root","yaml":"https://www.hepdata.net/download/submission/ins1906174/3/yaml","yoda":"https://www.hepdata.net/download/submission/ins1906174/3/yoda"}},"analyses":[{"analysis":"https://www.hepdata.net/record/resource/3458718?landing_page=true","filename":"FullLikelihood_forHEPData.tar","type":"HistFactory"},{"analysis":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41","type":"SModelS"}],"arxiv_id":"arXiv:2108.07586","collaborations":["ATLAS"],"control_number":"104458","creation_date":"2021-08-17","data_abstract":"","doc_type":"publication","doi":"10.1103/PhysRevD.104.112010","first_author":{"affiliation":"Marseille, CPPM","full_name":"Aad, Georges"},"hepdata_doi":"10.17182/hepdata.104458.v3","id":104458,"inspire_id":"1906174","journal_info":"Phys.Rev.D 104 (2021) 112010","keywords":[{"schema":"INSPIRE","value":"p p: colliding beams"},{"schema":"INSPIRE","value":"transverse momentum: missing-energy"},{"schema":"INSPIRE","value":"p p: scattering"},{"schema":"INSPIRE","value":"final state: hadronic"},{"schema":"INSPIRE","value":"final state: ((n)jet)"},{"schema":"INSPIRE","value":"neutralino: pair production"},{"schema":"INSPIRE","value":"chargino: pair production"},{"schema":"INSPIRE","value":"sparticle: branching ratio"},{"schema":"INSPIRE","value":"CERN LHC Coll"},{"schema":"INSPIRE","value":"ATLAS"},{"schema":"INSPIRE","value":"sparticle: pair production"},{"schema":"INSPIRE","value":"new physics: search for"},{"schema":"INSPIRE","value":"sensitivity"},{"schema":"INSPIRE","value":"vector boson: hadronic decay"},{"schema":"INSPIRE","value":"mass difference"},{"schema":"INSPIRE","value":"supersymmetry"},{"schema":"INSPIRE","value":"background"},{"schema":"INSPIRE","value":"structure"},{"schema":"INSPIRE","value":"track data analysis: jet"},{"schema":"INSPIRE","value":"channel cross section: upper limit"},{"schema":"INSPIRE","value":"chargino: mass: lower limit"},{"schema":"INSPIRE","value":"neutralino: mass: lower limit"},{"schema":"INSPIRE","value":"Higgsino: mass"},{"schema":"INSPIRE","value":"experimental results"},{"schema":"INSPIRE","value":"13000 GeV-cms"},{"schema":"PDG","value":"S046PHA"},{"schema":"PDG","value":"S046WNO"}],"last_updated":"Mon, 13 Nov 2023 13:29:57 GMT","parent_child_join":{"name":"parent_publication"},"publication_date":"2021-11-01T00:00:00","recid":104458,"resources":[{"description":"Webpage with all figures and tables","type":"html","url":"https://atlas.web.cern.ch/Atlas/GROUPS/PHYSICS/PAPERS/SUSY-2018-41/"},{"description":"Analysis code at truth label using SimpleAnalysis framework without boson tagging efficiency due to lack of jet substructure variables","type":"C++","url":"https://www.hepdata.net/record/resource/3458710?landing_page=true"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458711?landing_page=true"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458712?landing_page=true"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458713?landing_page=true"},{"description":"SHLA file for GGM-Higgsino model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458714?landing_page=true"},{"description":"SHLA file for N2N3-ZZ hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458715?landing_page=true"},{"description":"SHLA file for N2N3-Zh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458716?landing_page=true"},{"description":"SHLA file for N2N3-hh hinoBino simplified model","type":"SUSY Les Houches Accord","url":"https://www.hepdata.net/record/resource/3458717?landing_page=true"},{"description":"HistFactory likelihoods JSON files","type":"HistFactory","url":"https://www.hepdata.net/record/resource/3458718?landing_page=true"},{"description":null,"type":"SModelS","url":"https://smodels.github.io/docs/ListOfAnalyses#ATLAS-SUSY-2018-41"}],"subject_area":["hep-ex"],"resources": [ + { + "description": "web page with auxiliary material", + "type": "html", + "url": "http://cms-results.web.cern.ch/cms-results/public-results/publications/HIG-17-022/" + } +],"summary_authors":[{"affiliation":"Marseille, CPPM","full_name":"Aad, Georges"},{"affiliation":"Oklahoma U.","full_name":"Abbott, Braden Keim"},{"affiliation":"Massachusetts U., Amherst","full_name":"Abbott, Dale"},{"affiliation":"CERN","full_name":"Abed Abud, Adam"},{"affiliation":"Gottingen U., II. Phys. Inst.","full_name":"Abeling, Kira"},{"affiliation":"Royal Holloway, U. of London","full_name":"Abhayasinghe, Deshan Kavishka"},{"affiliation":"Brookhaven","full_name":"Abidi, Haider"},{"affiliation":"Tel Aviv U.","full_name":"Abramowicz, Halina"},{"affiliation":"Technion","full_name":"Abreu, Henso"},{"affiliation":"Argonne","full_name":"Abulaiti, Yiming"}],"title":"Search for charginos and neutralinos in final states with two boosted hadronically decaying bosons and missing transverse momentum in $pp$ collisions at $\\sqrt{s}=13$ TeV with the ATLAS detector","type":["article"],"uuid":"e06d0d13-c307-4ff4-a790-2e4295172b59","version":3,"year":"2021"},"record_type":"publication","related_recids":[],"related_to_this_recids":[],"resources_with_doi":[{"description":"Analysis code at truth label using SimpleAnalysis framework without boson tagging efficiency due to lack of jet substructure variables","doi":"10.17182/hepdata.104458.v3/r1","filename":"ANA-SUSY-2018-41.cxx"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1C1-WW)","doi":"10.17182/hepdata.104458.v3/r2","filename":"susy_params_C1C1_WW_700_100.slha"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-WZ)","doi":"10.17182/hepdata.104458.v3/r3","filename":"susy_params_C1N2_WZ_900_100.slha"},{"description":"SHLA file for $(\\tilde{W},~\\tilde{B})$-SIM model (C1N2-Wh)","doi":"10.17182/hepdata.104458.v3/r4","filename":"susy_params_C1N2_Wh_900_100.slha"},{"description":"SHLA file for GGM-Higgsino model","doi":"10.17182/hepdata.104458.v3/r5","filename":"susy_params_GGMHino_C1N2N1_800.slha"},{"description":"SHLA file for N2N3-ZZ hinoBino simplified model","doi":"10.17182/hepdata.104458.v3/r6","filename":"susy_params_N2N3_ZZ_800_100.slha"},{"description":"SHLA file for N2N3-Zh hinoBino simplified model","doi":"10.17182/hepdata.104458.v3/r7","filename":"susy_params_N2N3_Zh_800_100.slha"},{"description":"SHLA file for N2N3-hh hinoBino simplified model","doi":"10.17182/hepdata.104458.v3/r8","filename":"susy_params_N2N3_hh_800_100.slha"},{"description":"HistFactory likelihoods JSON files","doi":"10.17182/hepdata.104458.v3/r9","filename":"FullLikelihood_forHEPData.tar"}],"reviewers_notified":false,"revision_message":{"message":"Added CRs to likelihoods","version":3},"site_url":"https://www.hepdata.net","status":"finished","table_id_to_show":1583811,"table_name_to_show":"Table of contents","version":3,"version_count":3,"watched":false} diff --git a/workflows/tests/test_data_tasks.py b/workflows/tests/test_data_tasks.py new file mode 100644 index 000000000..901b0eb22 --- /dev/null +++ b/workflows/tests/test_data_tasks.py @@ -0,0 +1,104 @@ +import json + +import pytest +from airflow.models import DagBag +from airflow.utils.context import Context + +dagbag = DagBag() + + +class TestDataHarvest: + print("holup partner") + print(dagbag.dags.keys()) + dag = dagbag.get_dag("data_harvest_dag") + context = Context() + + @pytest.mark.vcr + def test_collect_ids(self): + task = self.dag.get_task("collect_ids") + res = task.execute(context=self.context) + assert res == [2851948, 2724476, 2851464, 2829504, 2854935] + + @pytest.mark.vcr + def test_download_record_versions(self): + id = "1906174" + task = self.dag.get_task("process_record.download_record_versions") + task.op_args = (id,) + res = task.execute(context=self.context) + assert res["base"]["record"]["inspire_id"] == id + assert res["base"]["record"]["version"] == 3 + assert all(value in res for value in [1, 2]) + + def test_build_record(self): + payload = {} + with open("tests/data_records/ins1906174_version1.json") as f: + payload[1] = json.load(f) + with open("tests/data_records/ins1906174_version2.json") as f: + payload[2] = json.load(f) + with open("tests/data_records/ins1906174_version3.json") as f: + payload["base"] = json.load(f) + + task = self.dag.get_task("process_record.build_record") + task.op_kwargs = {"data_schema": "data_schema", "payload": payload} + res = task.execute(context=self.context) + assert res["$schema"] == "data_schema" + assert res["_collections"] == ["Data"] + + assert res["keywords"][0]["value"] == "cmenergies: 13000.0-13000.0" + assert res["keywords"][1]["value"] == "observables: m_MMC" + + assert ( + res["urls"][0]["value"] == payload["base"]["record"]["resources"][0]["url"] + ) + assert ( + res["literature"][0]["record"]["$ref"] + == "https://inspirehep.net/literature/1906174" + ) + + assert res["dois"][0]["value"] == "10.17182/hepdata.104458" + assert res["dois"][0]["material"] == "data" + + # check version doi was added + assert any( + doi["material"] == "version" + and doi["value"] == "10.17182/hepdata.104458.v2" + for doi in res["dois"] + ) + # check resource doi was added + assert any( + doi["material"] == "part" + and doi["value"] == "10.17182/hepdata.104458.v1/r2" + for doi in res["dois"] + ) + # check data table doi was added + assert any( + doi["material"] == "part" + and doi["value"] == "10.17182/hepdata.104458.v3/t50" + for doi in res["dois"] + ) + + @pytest.mark.vcr + def test_load_record_put(self): + record = { + "_collections": ["Data"], + "$schema": "https://inspirehep.net/schemas/records/data.json", + "dois": [{"value": "10.8756/tTM", "material": "data"}], + } + print(dagbag.dags.keys()) + print(self.dag) + task = self.dag.get_task("process_record.load_record") + task.op_args = (record,) + json_response = task.execute(context=self.context) + assert json_response + + @pytest.mark.vcr + def test_load_record_post(self): + record = { + "_collections": ["Data"], + "$schema": "https://inspirehep.net/schemas/records/data.json", + "dois": [{"value": "10.1234567/test", "material": "data"}], + } + task = self.dag.get_task("process_record.load_record") + task.op_args = (record,) + json_response = task.execute(context=self.context) + assert json_response